亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? sampletabcontrol.cs

?? Magic Library 1.7,有說明文檔
?? CS
?? 第 1 頁 / 共 4 頁
字號(hào):
// *****************************************************************************
// 
//  (c) Crownwood Consulting Limited 2002 
//  All rights reserved. The software and associated documentation 
//  supplied hereunder are the proprietary information of Crownwood Consulting 
//	Limited, Haxey, North Lincolnshire, England and are supplied subject to 
//	licence terms.
// 
//  Magic Version 1.7	www.dotnetmagic.com
// *****************************************************************************

using System;
using System.IO;
using System.Drawing;
using System.Resources;
using System.Reflection;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using Crownwood.Magic.Common;
using Crownwood.Magic.Menus;
using Crownwood.Magic.Controls;
using Crownwood.Magic.Win32;

namespace SampleTabControl
{
    public class SampleTabControl : System.Windows.Forms.Form
    {
        private static int _count = 0;
        
        private PopupMenu _popupMenu;
        private ImageList _internalImages;
        private bool _update = false;
        private Color _startForeColor;
        private Color _startBackColor;
        private Color _startButtonActive;
        private Color _startButtonInactive;
        private Color _startTextInactiveColor;
        private Color _startHotTextColor;
        private string[] _strings = new string[]{"P&roperties", 
                                                 "Solution Explo&rer", 
                                                 "&Task List", 
                                                 "&Command Window", 
                                                 "Callstack", 
                                                 "B&reakpoints", 
                                                 "Output"};

        private System.Windows.Forms.Button addPage;
        private System.Windows.Forms.Button removePage;
        private System.Windows.Forms.Button clearAll;
        private System.Windows.Forms.GroupBox StyleGroup;
        private System.Windows.Forms.GroupBox AppearanceGroup;
        private System.Windows.Forms.GroupBox exampleColors;
        private System.Windows.Forms.CheckBox positionAtTop;
        private System.Windows.Forms.CheckBox hotTrack;
        private System.Windows.Forms.CheckBox shrinkPages;
        private System.Windows.Forms.CheckBox showClose;
        private System.Windows.Forms.CheckBox showArrows;
        private System.Windows.Forms.CheckBox insetPlain;
        private System.Windows.Forms.CheckBox insetPagesOnly;
        private System.Windows.Forms.CheckBox selectedTextOnly;
        private System.Windows.Forms.CheckBox hoverSelect;
        private System.Windows.Forms.CheckBox idePixelBorder;
        private System.Windows.Forms.NumericUpDown numericUpDown1;
        private System.Windows.Forms.Label label1;
        private System.Windows.Forms.Label label2;
        private System.Windows.Forms.Label label3;
        private System.Windows.Forms.Label label4;
        private System.Windows.Forms.NumericUpDown numericUpDown2;
        private System.Windows.Forms.NumericUpDown numericUpDown3;
        private System.Windows.Forms.NumericUpDown numericUpDown4;
        private System.Windows.Forms.RadioButton radioIDE;
        private System.Windows.Forms.RadioButton radioPlain;
        private System.Windows.Forms.RadioButton radioMultiBox;
        private System.Windows.Forms.RadioButton radioMultiForm;
        private System.Windows.Forms.RadioButton radioMultiDocument;
        private System.Windows.Forms.RadioButton red;
        private System.Windows.Forms.RadioButton blue;
        private System.Windows.Forms.RadioButton normal;
        private System.Windows.Forms.CheckBox idePixelArea;
        private System.Windows.Forms.CheckBox multiLine;
        private Crownwood.Magic.Controls.TabControl tabControl;
        private System.Windows.Forms.GroupBox groupBox1;
        private System.Windows.Forms.RadioButton tabHideUsingLogic;
        private System.Windows.Forms.RadioButton tabHideAlways;
        private System.Windows.Forms.RadioButton tabShowAlways;
        private System.Windows.Forms.RadioButton tabHideWithoutMouse;
        private System.Windows.Forms.CheckBox multilineFullWidth;

        /// <summary>
        /// Required designer variable.
        /// </summary>
        private System.ComponentModel.Container components = null;

        public SampleTabControl()
        {
            //
            // Required for Windows Form Designer support
            //
            InitializeComponent();
            
            // Create a strip of images by loading an embedded bitmap resource
            _internalImages = ResourceHelper.LoadBitmapStrip(this.GetType(),
                                                             "SampleTabControl.SampleImages.bmp",
                                                             new Size(16,16),
                                                             new Point(0,0));

            _popupMenu = new PopupMenu();
            _popupMenu.MenuCommands.Add(new MenuCommand("Example1", _internalImages, 0));
            _popupMenu.MenuCommands.Add(new MenuCommand("Example2", _internalImages, 1));
            _popupMenu.MenuCommands.Add(new MenuCommand("Example3", _internalImages, 2));
            tabControl.ContextPopupMenu = _popupMenu;

            tabControl.ImageList = _internalImages;
            
            // Hook into the close button
            tabControl.ClosePressed += new EventHandler(OnRemovePage);
	
            // Remember initial colors
            _startForeColor = tabControl.ForeColor;
            _startBackColor = tabControl.BackColor;
            _startButtonActive = tabControl.ButtonActiveColor;
            _startButtonInactive = tabControl.ButtonInactiveColor;
            _startTextInactiveColor = tabControl.TextInactiveColor;
			_startHotTextColor = tabControl.HotTextColor;
            normal.Checked = true;

            UpdateControls();
        }

        protected override void Dispose( bool disposing )
        {
            if( disposing )
            {
                if(components != null)
                    components.Dispose();
            }
            base.Dispose( disposing );
        }

		#region Windows Form Designer generated code
        private void InitializeComponent()
        {
            this.selectedTextOnly = new System.Windows.Forms.CheckBox();
            this.positionAtTop = new System.Windows.Forms.CheckBox();
            this.radioMultiBox = new System.Windows.Forms.RadioButton();
            this.removePage = new System.Windows.Forms.Button();
            this.hotTrack = new System.Windows.Forms.CheckBox();
            this.numericUpDown3 = new System.Windows.Forms.NumericUpDown();
            this.numericUpDown1 = new System.Windows.Forms.NumericUpDown();
            this.numericUpDown4 = new System.Windows.Forms.NumericUpDown();
            this.hoverSelect = new System.Windows.Forms.CheckBox();
            this.numericUpDown2 = new System.Windows.Forms.NumericUpDown();
            this.radioMultiForm = new System.Windows.Forms.RadioButton();
            this.showClose = new System.Windows.Forms.CheckBox();
            this.shrinkPages = new System.Windows.Forms.CheckBox();
            this.addPage = new System.Windows.Forms.Button();
            this.clearAll = new System.Windows.Forms.Button();
            this.StyleGroup = new System.Windows.Forms.GroupBox();
            this.radioPlain = new System.Windows.Forms.RadioButton();
            this.radioIDE = new System.Windows.Forms.RadioButton();
            this.label4 = new System.Windows.Forms.Label();
            this.label1 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.insetPlain = new System.Windows.Forms.CheckBox();
            this.insetPagesOnly = new System.Windows.Forms.CheckBox();
            this.showArrows = new System.Windows.Forms.CheckBox();
            this.radioMultiDocument = new System.Windows.Forms.RadioButton();
            this.AppearanceGroup = new System.Windows.Forms.GroupBox();
            this.exampleColors = new System.Windows.Forms.GroupBox();
            this.red = new System.Windows.Forms.RadioButton();
            this.blue = new System.Windows.Forms.RadioButton();
            this.normal = new System.Windows.Forms.RadioButton();
            this.idePixelBorder = new System.Windows.Forms.CheckBox();
            this.idePixelArea = new System.Windows.Forms.CheckBox();
            this.multiLine = new System.Windows.Forms.CheckBox();
            this.tabControl = new Crownwood.Magic.Controls.TabControl();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.tabHideWithoutMouse = new System.Windows.Forms.RadioButton();
            this.tabHideUsingLogic = new System.Windows.Forms.RadioButton();
            this.tabHideAlways = new System.Windows.Forms.RadioButton();
            this.tabShowAlways = new System.Windows.Forms.RadioButton();
            this.multilineFullWidth = new System.Windows.Forms.CheckBox();
            ((System.ComponentModel.ISupportInitialize)(this.numericUpDown3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.numericUpDown4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.numericUpDown2)).BeginInit();
            this.StyleGroup.SuspendLayout();
            this.AppearanceGroup.SuspendLayout();
            this.exampleColors.SuspendLayout();
            this.groupBox1.SuspendLayout();
            this.SuspendLayout();
            // 
            // selectedTextOnly
            // 
            this.selectedTextOnly.Location = new System.Drawing.Point(176, 224);
            this.selectedTextOnly.Name = "selectedTextOnly";
            this.selectedTextOnly.Size = new System.Drawing.Size(120, 24);
            this.selectedTextOnly.TabIndex = 1;
            this.selectedTextOnly.Text = "Selected Text Only";
            this.selectedTextOnly.CheckedChanged += new System.EventHandler(this.selectedTextOnly_CheckedChanged);
            // 
            // positionAtTop
            // 
            this.positionAtTop.Location = new System.Drawing.Point(176, 8);
            this.positionAtTop.Name = "positionAtTop";
            this.positionAtTop.TabIndex = 1;
            this.positionAtTop.Text = "Position At Top";
            this.positionAtTop.CheckedChanged += new System.EventHandler(this.positionAtTop_CheckedChanged);
            // 
            // radioMultiBox
            // 
            this.radioMultiBox.Location = new System.Drawing.Point(16, 64);
            this.radioMultiBox.Name = "radioMultiBox";
            this.radioMultiBox.Size = new System.Drawing.Size(88, 24);
            this.radioMultiBox.TabIndex = 0;
            this.radioMultiBox.Text = "MultiBox";
            this.radioMultiBox.Click += new System.EventHandler(this.OnAppearanceMultiBox);
            // 
            // removePage
            // 
            this.removePage.Location = new System.Drawing.Point(424, 376);
            this.removePage.Name = "removePage";
            this.removePage.Size = new System.Drawing.Size(88, 24);
            this.removePage.TabIndex = 0;
            this.removePage.Text = "RemovePage";
            this.removePage.Click += new System.EventHandler(this.OnRemovePage);
            // 
            // hotTrack
            // 
            this.hotTrack.Location = new System.Drawing.Point(176, 32);
            this.hotTrack.Name = "hotTrack";
            this.hotTrack.TabIndex = 1;
            this.hotTrack.Text = "HotTrack";
            this.hotTrack.CheckedChanged += new System.EventHandler(this.Highlight_CheckedChanged);
            // 
            // numericUpDown3
            // 
            this.numericUpDown3.Location = new System.Drawing.Point(384, 336);
            this.numericUpDown3.Name = "numericUpDown3";
            this.numericUpDown3.Size = new System.Drawing.Size(56, 20);
            this.numericUpDown3.TabIndex = 2;
            this.numericUpDown3.ValueChanged += new System.EventHandler(this.numericUpDown3_ValueChanged);
            // 
            // numericUpDown1
            // 
            this.numericUpDown1.Location = new System.Drawing.Point(384, 304);
            this.numericUpDown1.Name = "numericUpDown1";
            this.numericUpDown1.Size = new System.Drawing.Size(56, 20);
            this.numericUpDown1.TabIndex = 2;
            this.numericUpDown1.ValueChanged += new System.EventHandler(this.numericUpDown1_ValueChanged);
            // 
            // numericUpDown4
            // 
            this.numericUpDown4.Location = new System.Drawing.Point(544, 336);
            this.numericUpDown4.Name = "numericUpDown4";
            this.numericUpDown4.Size = new System.Drawing.Size(56, 20);
            this.numericUpDown4.TabIndex = 2;
            this.numericUpDown4.ValueChanged += new System.EventHandler(this.numericUpDown4_ValueChanged);
            // 
            // hoverSelect
            // 

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产女主播一区| 99国产精品视频免费观看| 欧美三级中文字| 亚洲大片免费看| 欧美一区二区三区男人的天堂| 午夜视频久久久久久| 4438x亚洲最大成人网| 日韩1区2区日韩1区2区| 精品国产污污免费网站入口| 国产制服丝袜一区| 国产精品久久午夜夜伦鲁鲁| 日本精品裸体写真集在线观看| 一区二区三区高清在线| 欧美日韩精品系列| 日本三级亚洲精品| 国产日韩亚洲欧美综合| k8久久久一区二区三区| 午夜精品成人在线视频| 欧美成人性战久久| 不卡视频在线观看| 亚洲h动漫在线| 欧美高清在线一区| 欧美羞羞免费网站| 韩国三级中文字幕hd久久精品| 国产精品网站在线观看| 欧美手机在线视频| 国产一区二区在线看| 亚洲视频在线一区二区| 日韩欧美国产一区二区在线播放| 懂色av一区二区三区免费看| 亚洲一区二区三区激情| 久久一区二区三区四区| 色欧美乱欧美15图片| 国产精品国产三级国产普通话三级 | 国产女主播一区| 在线视频欧美区| 久久99精品久久只有精品| 中文字幕在线视频一区| 日韩一区二区不卡| 一本久久精品一区二区| 久久精品国产久精国产| 亚洲图片激情小说| 精品国产成人在线影院| 一本到不卡精品视频在线观看| 全部av―极品视觉盛宴亚洲| 亚洲女人小视频在线观看| 日韩免费看的电影| 欧美午夜精品一区二区蜜桃| 国产91丝袜在线观看| 日本网站在线观看一区二区三区| 中文字幕中文字幕在线一区| 欧美精品一区男女天堂| 欧美男女性生活在线直播观看| 大陆成人av片| 激情成人综合网| 天天综合天天综合色| 亚洲女人小视频在线观看| 国产婷婷色一区二区三区四区| 精品视频一区二区三区免费| 91免费在线视频观看| 国产盗摄精品一区二区三区在线| 日韩国产欧美三级| 亚洲午夜免费电影| 亚洲免费毛片网站| 成人欧美一区二区三区黑人麻豆| 欧美tk丨vk视频| 欧美美女一区二区在线观看| 在线免费观看日韩欧美| 日韩一级精品视频在线观看| 欧美高清hd18日本| 欧美美女bb生活片| 欧美午夜片在线观看| 日本乱人伦一区| 一本色道久久综合亚洲精品按摩| 成人黄页在线观看| 粉嫩13p一区二区三区| 国产在线一区二区综合免费视频| 美女免费视频一区| 免费成人在线影院| 精品一区免费av| 激情深爱一区二区| 国产成人av一区二区| 国产精品一区二区三区99| 国内精品国产成人国产三级粉色| 国产综合色视频| 国产盗摄精品一区二区三区在线| 国产在线不卡视频| 成人午夜又粗又硬又大| 99精品久久只有精品| 91污片在线观看| 色av一区二区| 69久久夜色精品国产69蝌蚪网| 欧美三级韩国三级日本三斤| 3d动漫精品啪啪1区2区免费| 日韩欧美在线一区二区三区| 日韩亚洲国产中文字幕欧美| 久久综合av免费| 国产精品人人做人人爽人人添| 国产精品久久久久一区| 亚洲毛片av在线| 午夜欧美2019年伦理| 韩国三级电影一区二区| 成人aa视频在线观看| 91网站最新网址| 欧美二区乱c少妇| 亚洲精品一线二线三线| 国产精品久久久一区麻豆最新章节| 亚洲免费av观看| 久久精品国产精品亚洲精品| 风流少妇一区二区| 日本精品视频一区二区三区| 欧美一区日本一区韩国一区| xnxx国产精品| 亚洲精品水蜜桃| 美女视频黄a大片欧美| 成人激情动漫在线观看| 欧美色国产精品| 国产网站一区二区| 亚洲国产日韩在线一区模特| 国内精品视频一区二区三区八戒| 99国产精品久久久久久久久久 | 综合久久国产九一剧情麻豆| 午夜精品久久久久久久蜜桃app| 国产酒店精品激情| 欧美色男人天堂| 国产欧美日韩麻豆91| 午夜视频在线观看一区| 成人app网站| 欧美zozo另类异族| 亚洲国产精品嫩草影院| 国产91丝袜在线18| 欧美一区日韩一区| 一区二区三区精品在线| 成人免费高清视频在线观看| 欧美电影免费观看高清完整版在 | www.av亚洲| 精品三级av在线| 国产精品亚洲人在线观看| 在线亚洲一区观看| 欧美日韩国产电影| 国产午夜亚洲精品午夜鲁丝片| 亚洲国产高清在线观看视频| 石原莉奈在线亚洲二区| 高清成人在线观看| 欧美日韩亚洲综合在线 欧美亚洲特黄一级 | 亚洲不卡一区二区三区| 国产乱码精品一区二区三| 欧美自拍丝袜亚洲| 国产人妖乱国产精品人妖| 午夜精品免费在线观看| 国产乱码字幕精品高清av| 正在播放一区二区| 中文字幕一区二区三区四区不卡| 天天操天天干天天综合网| 懂色av一区二区三区免费观看| 欧美mv日韩mv国产| 亚洲一区免费观看| 丁香六月久久综合狠狠色| 欧美精品123区| 国产精品久久久久天堂| 粉嫩av亚洲一区二区图片| 日韩欧美国产一区在线观看| 亚洲在线一区二区三区| 懂色av一区二区三区免费观看| 国产亚洲精品福利| 另类专区欧美蜜桃臀第一页| 在线欧美小视频| 中文字幕一区二区日韩精品绯色| 国产成人av网站| 欧美精品一区视频| 天天色天天爱天天射综合| 一本到不卡精品视频在线观看| 91精品久久久久久蜜臀| 亚洲图片欧美激情| 不卡的av在线| 欧美国产欧美综合| 国产风韵犹存在线视精品| 精品国产不卡一区二区三区| 日韩国产高清影视| 色综合久久中文字幕综合网| 国产精品成人网| 91成人看片片| 亚洲国产成人av| 在线亚洲一区二区| 亚洲综合另类小说| 日韩欧美国产精品| 免费看日韩精品| 精品国产髙清在线看国产毛片 | 99国产精品久久久| 国产精品人人做人人爽人人添| 国产成人午夜精品影院观看视频| 久久老女人爱爱| 国产精品系列在线播放| 日韩午夜精品电影| 波多野结衣一区二区三区 | 色欧美片视频在线观看在线视频| 亚洲日韩欧美一区二区在线| 一本色道a无线码一区v| 国产精品天美传媒| 欧美中文字幕一区二区三区|