亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
国产精品二三区| 久久亚洲精精品中文字幕早川悠里 | 五月天激情综合网| 欧美日韩成人综合在线一区二区| 亚洲电影中文字幕在线观看| 欧美无乱码久久久免费午夜一区| 天使萌一区二区三区免费观看| 欧美精品黑人性xxxx| 久久成人麻豆午夜电影| 亚洲国产精品成人综合| 在线观看欧美黄色| 久久国内精品视频| 亚洲人成电影网站色mp4| 欧美电影在线免费观看| 国产伦精一区二区三区| 亚洲视频一区二区在线观看| 欧美日韩免费观看一区三区| 精品午夜一区二区三区在线观看| 国产精品欧美一区喷水| 欧美高清视频一二三区| 国产成人午夜片在线观看高清观看| 亚洲色图视频免费播放| 日韩情涩欧美日韩视频| 成人免费看黄yyy456| 亚洲va欧美va人人爽| 国产欧美日韩精品一区| 欧美日韩一区不卡| 懂色av一区二区夜夜嗨| 石原莉奈在线亚洲三区| 欧美极品另类videosde| 欧美日韩国产成人在线91| 国产河南妇女毛片精品久久久 | 亚洲精品国产成人久久av盗摄| 欧美精品一卡二卡| 波多野结衣中文一区| 久久国产人妖系列| 亚洲精品第一国产综合野| 久久久精品天堂| 91麻豆精品国产91| 日本二三区不卡| 国产精品一线二线三线精华| 亚洲成国产人片在线观看| 国产精品你懂的在线| 精品精品国产高清一毛片一天堂| 欧美亚洲另类激情小说| bt7086福利一区国产| 精久久久久久久久久久| 亚洲成人av资源| 亚洲另类中文字| 中文文精品字幕一区二区| 制服丝袜av成人在线看| 欧美在线短视频| 色综合久久久久综合| 国产91精品入口| 国产一区不卡在线| 美女视频一区二区| 婷婷中文字幕综合| 亚洲va在线va天堂| 一区二区免费在线播放| 成人欧美一区二区三区1314| 国产欧美精品一区二区三区四区| 日韩欧美一区中文| 日韩亚洲欧美在线观看| 欧美一级理论片| 日韩一区二区在线免费观看| 欧美精品久久天天躁| 欧美日韩在线免费视频| 欧美色区777第一页| 欧美性做爰猛烈叫床潮| 日本久久电影网| 91免费观看视频| 在线免费观看不卡av| 欧美三级电影网| 精品视频一区二区三区免费| 欧美性xxxxx极品少妇| 欧美日韩免费视频| 91精品国产综合久久久蜜臀粉嫩 | 亚洲精品久久7777| 一区二区国产盗摄色噜噜| 亚洲综合视频在线| 性欧美大战久久久久久久久| 午夜电影网一区| 久久se精品一区二区| 国内精品自线一区二区三区视频| 国产呦萝稀缺另类资源| 成人av动漫在线| 91黄色激情网站| 欧美精品一二三区| 欧美va在线播放| 久久久久久久一区| 国产精品美女一区二区三区| 国产精品久久久久久久久免费丝袜| 国产精品午夜免费| 亚洲高清免费观看高清完整版在线观看| 亚洲已满18点击进入久久| 天天爽夜夜爽夜夜爽精品视频| 麻豆精品在线播放| 波波电影院一区二区三区| 欧美综合在线视频| 日韩精品专区在线| 中文字幕日韩一区二区| 偷窥少妇高潮呻吟av久久免费| 狠狠色狠狠色综合| 色哦色哦哦色天天综合| 7777精品伊人久久久大香线蕉的| 精品99久久久久久| 曰韩精品一区二区| 久久精品国产亚洲a| 成人少妇影院yyyy| 欧美美女bb生活片| 国产欧美一二三区| 视频一区视频二区中文字幕| 国产成人自拍高清视频在线免费播放| 97久久精品人人澡人人爽| 欧美一区二区三区在线电影| 中文字幕av不卡| 日韩av一区二| av中文一区二区三区| 欧美日韩另类一区| 中文字幕成人在线观看| 视频在线观看一区| 99精品视频在线播放观看| 欧美蜜桃一区二区三区| 中文字幕一区免费在线观看| 日本成人在线一区| 日本电影欧美片| 欧美激情资源网| 日本欧美加勒比视频| 91麻豆成人久久精品二区三区| 日韩精品在线一区二区| 亚洲小说春色综合另类电影| 豆国产96在线|亚洲| 91麻豆精品久久久久蜜臀| 亚洲欧美另类小说| 丁香激情综合五月| 日韩欧美中文一区| 午夜视频一区在线观看| 色综合久久久久综合| 国产午夜精品一区二区三区视频| 视频一区二区国产| 在线视频国内自拍亚洲视频| 中文字幕第一页久久| 国产一区二区三区免费观看 | 精品国产一二三| 日韩精品三区四区| 欧美曰成人黄网| 亚洲欧美日韩电影| 99精品国产热久久91蜜凸| 国产三级一区二区| 国内外成人在线| 精品毛片乱码1区2区3区| 亚洲成a人片综合在线| 欧美三级三级三级| 亚瑟在线精品视频| 欧美日韩一级大片网址| 香蕉影视欧美成人| 欧美日韩中文字幕一区| 亚洲一区二区高清| 欧美三级资源在线| 日韩高清电影一区| 日韩免费高清视频| 国产真实乱子伦精品视频| 欧美成人综合网站| 国精产品一区一区三区mba桃花| 日韩欧美国产综合一区 | av在线不卡网| 国产精品久久久久久久裸模| 国产一区91精品张津瑜| 久久久777精品电影网影网 | 91论坛在线播放| 亚洲精品高清视频在线观看| 91一区二区三区在线观看| 中文字幕人成不卡一区| 94-欧美-setu| 午夜欧美一区二区三区在线播放| 欧美一区二区三区在线| 玖玖九九国产精品| 久久久久久久久久看片| 成人做爰69片免费看网站| 一区在线中文字幕| 欧美日韩中文精品| 精品影院一区二区久久久| 久久无码av三级| 福利一区二区在线| 亚洲免费av在线| 欧美精品久久99| 国产福利一区二区| 亚洲人精品一区| 欧美电影在哪看比较好| 精品一区二区三区免费观看| 日本一区二区在线不卡| 在线中文字幕一区二区| 蜜臀av性久久久久蜜臀aⅴ流畅| 精品99一区二区| av亚洲精华国产精华精| 日韩av一级电影| 国产精品久久久久久久浪潮网站| 欧美中文一区二区三区| 狠狠久久亚洲欧美| 亚洲乱码日产精品bd|