当前位置: 首页>>代码示例>>C#>>正文


C# System.Windows.Forms.ContextMenuStrip.SuspendLayout方法代码示例

本文整理汇总了C#中System.Windows.Forms.ContextMenuStrip.SuspendLayout方法的典型用法代码示例。如果您正苦于以下问题:C# System.Windows.Forms.ContextMenuStrip.SuspendLayout方法的具体用法?C# System.Windows.Forms.ContextMenuStrip.SuspendLayout怎么用?C# System.Windows.Forms.ContextMenuStrip.SuspendLayout使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在System.Windows.Forms.ContextMenuStrip的用法示例。


在下文中一共展示了System.Windows.Forms.ContextMenuStrip.SuspendLayout方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: InitializeComponent

        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.Windows.Forms.ContextMenuStrip cmsTray;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
            this.cmsTrayRoll = new System.Windows.Forms.ToolStripMenuItem();
            this.cmsTrayR = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.cmsTreySettings = new System.Windows.Forms.ToolStripMenuItem();
            this.cmsTrayAbout = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
            this.cmsTreyExit = new System.Windows.Forms.ToolStripMenuItem();
            this.pictureBox1 = new System.Windows.Forms.PictureBox();
            this.tTick = new System.Windows.Forms.Timer(this.components);
            this.niTrey = new System.Windows.Forms.NotifyIcon(this.components);
            this.label1 = new System.Windows.Forms.Label();
            cmsTray = new System.Windows.Forms.ContextMenuStrip(this.components);
            cmsTray.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
            this.SuspendLayout();
            // 
            // cmsTray
            // 
            cmsTray.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.cmsTrayRoll,
            this.cmsTrayR,
            this.toolStripSeparator1,
            this.cmsTreySettings,
            this.cmsTrayAbout,
            this.toolStripSeparator2,
            this.cmsTreyExit});
            cmsTray.Name = "cmsTrey";
            cmsTray.Size = new System.Drawing.Size(150, 126);
            // 
            // cmsTrayRoll
            // 
            this.cmsTrayRoll.Image = ((System.Drawing.Image)(resources.GetObject("cmsTrayRoll.Image")));
            this.cmsTrayRoll.Name = "cmsTrayRoll";
            this.cmsTrayRoll.Size = new System.Drawing.Size(149, 22);
            this.cmsTrayRoll.Text = "Свернуть";
            this.cmsTrayRoll.Click += new System.EventHandler(this.cmsTrayRoll_Click);
            // 
            // cmsTrayR
            // 
            this.cmsTrayR.Enabled = false;
            this.cmsTrayR.Image = ((System.Drawing.Image)(resources.GetObject("cmsTrayR.Image")));
            this.cmsTrayR.Name = "cmsTrayR";
            this.cmsTrayR.Size = new System.Drawing.Size(149, 22);
            this.cmsTrayR.Text = "Развернуть";
            this.cmsTrayR.Click += new System.EventHandler(this.cmsTrayR_Click);
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(146, 6);
            // 
            // cmsTreySettings
            // 
            this.cmsTreySettings.Image = ((System.Drawing.Image)(resources.GetObject("cmsTreySettings.Image")));
            this.cmsTreySettings.Name = "cmsTreySettings";
            this.cmsTreySettings.Size = new System.Drawing.Size(149, 22);
            this.cmsTreySettings.Text = "Настройки";
            this.cmsTreySettings.Click += new System.EventHandler(this.cmsTreySettings_Click);
            // 
            // cmsTrayAbout
            // 
            this.cmsTrayAbout.Image = ((System.Drawing.Image)(resources.GetObject("cmsTrayAbout.Image")));
            this.cmsTrayAbout.Name = "cmsTrayAbout";
            this.cmsTrayAbout.Size = new System.Drawing.Size(149, 22);
            this.cmsTrayAbout.Text = "О программе";
            this.cmsTrayAbout.Click += new System.EventHandler(this.cmsTrayAbout_Click);
            // 
            // toolStripSeparator2
            // 
            this.toolStripSeparator2.Name = "toolStripSeparator2";
            this.toolStripSeparator2.Size = new System.Drawing.Size(146, 6);
            // 
            // cmsTreyExit
            // 
            this.cmsTreyExit.Image = ((System.Drawing.Image)(resources.GetObject("cmsTreyExit.Image")));
            this.cmsTreyExit.Name = "cmsTreyExit";
            this.cmsTreyExit.Size = new System.Drawing.Size(149, 22);
            this.cmsTreyExit.Text = "Закрыть";
            this.cmsTreyExit.Click += new System.EventHandler(this.cmsTreyExit_Click);
            // 
            // pictureBox1
            // 
            this.pictureBox1.BackColor = System.Drawing.Color.Black;
            this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
            this.pictureBox1.Location = new System.Drawing.Point(1, 2);
            this.pictureBox1.Name = "pictureBox1";
            this.pictureBox1.Size = new System.Drawing.Size(238, 238);
            this.pictureBox1.TabIndex = 0;
            this.pictureBox1.TabStop = false;
            this.pictureBox1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.Form1_MouseMove);
            this.pictureBox1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Form1_MouseDown);
//.........这里部分代码省略.........
开发者ID:Sacret,项目名称:small-clock,代码行数:101,代码来源:Form1.Designer.cs

示例2: InitializeComponent

		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
            this.components = new System.ComponentModel.Container();
            System.Windows.Forms.ColumnHeader columnHeaderVarName;
            System.Windows.Forms.ColumnHeader columnHeaderVarValue;
            System.Windows.Forms.ColumnHeader columnHeaderProperty;
            System.Windows.Forms.ColumnHeader columnHeaderPropertyValue;
            System.Windows.Forms.ContextMenuStrip contextMenuForSysInfo;
            System.Windows.Forms.ToolStripMenuItem menuItemMsdnEng;
            System.Windows.Forms.ToolStripMenuItem menuItemMsdnRus;
            System.Windows.Forms.ContextMenuStrip contextMenuForEnvVars;
            System.Windows.Forms.ToolStripMenuItem menuItemOpenEnvVarDialog;
            System.Windows.Forms.ListViewGroup listViewGroup1 = new System.Windows.Forms.ListViewGroup("Класс System.Environment", System.Windows.Forms.HorizontalAlignment.Left);
            System.Windows.Forms.ListViewGroup listViewGroup2 = new System.Windows.Forms.ListViewGroup("Класс System.Windows.Forms.SystemInformation", System.Windows.Forms.HorizontalAlignment.Left);
            System.Windows.Forms.ColumnHeader columnHeaderSpecialName;
            System.Windows.Forms.ColumnHeader columnHeaderSpecialPath;
            this.tabControl = new System.Windows.Forms.TabControl();
            this.tabPageSysInfo = new System.Windows.Forms.TabPage();
            this.listViewSysInfo = new System.Windows.Forms.ListView();
            this.tabPageEnv = new System.Windows.Forms.TabPage();
            this.listViewVars = new System.Windows.Forms.ListView();
            this.tabPagePaths = new System.Windows.Forms.TabPage();
            this.listViewPaths = new System.Windows.Forms.ListView();
            columnHeaderVarName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            columnHeaderVarValue = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            columnHeaderProperty = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            columnHeaderPropertyValue = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            contextMenuForSysInfo = new System.Windows.Forms.ContextMenuStrip(this.components);
            menuItemMsdnEng = new System.Windows.Forms.ToolStripMenuItem();
            menuItemMsdnRus = new System.Windows.Forms.ToolStripMenuItem();
            contextMenuForEnvVars = new System.Windows.Forms.ContextMenuStrip(this.components);
            menuItemOpenEnvVarDialog = new System.Windows.Forms.ToolStripMenuItem();
            columnHeaderSpecialName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            columnHeaderSpecialPath = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            contextMenuForSysInfo.SuspendLayout();
            contextMenuForEnvVars.SuspendLayout();
            this.tabControl.SuspendLayout();
            this.tabPageSysInfo.SuspendLayout();
            this.tabPageEnv.SuspendLayout();
            this.tabPagePaths.SuspendLayout();
            this.SuspendLayout();
            // 
            // columnHeaderVarName
            // 
            columnHeaderVarName.Text = "Имя переменной";
            columnHeaderVarName.Width = 105;
            // 
            // columnHeaderVarValue
            // 
            columnHeaderVarValue.Text = "Значение";
            columnHeaderVarValue.Width = 110;
            // 
            // columnHeaderProperty
            // 
            columnHeaderProperty.Text = "Свойство";
            // 
            // columnHeaderPropertyValue
            // 
            columnHeaderPropertyValue.Text = "Значение";
            // 
            // contextMenuForSysInfo
            // 
            contextMenuForSysInfo.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            menuItemMsdnEng,
            menuItemMsdnRus});
            contextMenuForSysInfo.Name = "contextMenuForSysInfo";
            contextMenuForSysInfo.ShowImageMargin = false;
            contextMenuForSysInfo.Size = new System.Drawing.Size(274, 48);
            // 
            // menuItemMsdnEng
            // 
            menuItemMsdnEng.Name = "menuItemMsdnEng";
            menuItemMsdnEng.Size = new System.Drawing.Size(273, 22);
            menuItemMsdnEng.Tag = "EN-US";
            menuItemMsdnEng.Text = "Открыть справку MSDN на англиийском";
            menuItemMsdnEng.Click += new System.EventHandler(this.OnSysInfoContextItem_Click);
            // 
            // menuItemMsdnRus
            // 
            menuItemMsdnRus.Name = "menuItemMsdnRus";
            menuItemMsdnRus.Size = new System.Drawing.Size(273, 22);
            menuItemMsdnRus.Tag = "RU-RU";
            menuItemMsdnRus.Text = "Открыть справку MSDN на русском";
            menuItemMsdnRus.Click += new System.EventHandler(this.OnSysInfoContextItem_Click);
            // 
            // contextMenuForEnvVars
            // 
            contextMenuForEnvVars.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            menuItemOpenEnvVarDialog});
            contextMenuForEnvVars.Name = "contextMenuForEnvVars";
            contextMenuForEnvVars.ShowImageMargin = false;
            contextMenuForEnvVars.Size = new System.Drawing.Size(302, 26);
            // 
            // menuItemOpenEnvVarDialog
            // 
            menuItemOpenEnvVarDialog.Name = "menuItemOpenEnvVarDialog";
//.........这里部分代码省略.........
开发者ID:bazile,项目名称:Training,代码行数:101,代码来源:MainForm.Designer.cs

示例3: InitializeComponent

        /// <summary>
        /// デザイナー サポートに必要なメソッドです。このメソッドの内容を
        /// コード エディターで変更しないでください。
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.Windows.Forms.ContextMenuStrip notifyMenu;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(NotifyIconWrapper));
            this.Add_new_memo = new System.Windows.Forms.ToolStripMenuItem();
            this.change_transportmode = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.exit_app = new System.Windows.Forms.ToolStripMenuItem();
            this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
            this.about_version = new System.Windows.Forms.ToolStripMenuItem();
            notifyMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
            notifyMenu.SuspendLayout();
            // 
            // notifyMenu
            // 
            notifyMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.Add_new_memo,
            this.change_transportmode,
            this.toolStripSeparator1,
            this.about_version,
            this.exit_app});
            notifyMenu.Name = "notifyMenu";
            notifyMenu.Size = new System.Drawing.Size(156, 98);
            // 
            // Add_new_memo
            // 
            this.Add_new_memo.AutoSize = false;
            this.Add_new_memo.Name = "Add_new_memo";
            this.Add_new_memo.Size = new System.Drawing.Size(155, 22);
            this.Add_new_memo.Text = "新しいメモを追加";
            // 
            // change_transportmode
            // 
            this.change_transportmode.CheckOnClick = true;
            this.change_transportmode.Name = "change_transportmode";
            this.change_transportmode.Size = new System.Drawing.Size(155, 22);
            this.change_transportmode.Text = "透過モード";
            this.change_transportmode.Click += new System.EventHandler(this.change_transportmode_Click);
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(152, 6);
            // 
            // exit_app
            // 
            this.exit_app.Name = "exit_app";
            this.exit_app.Size = new System.Drawing.Size(155, 22);
            this.exit_app.Text = "終了";
            // 
            // notifyIcon1
            // 
            this.notifyIcon1.ContextMenuStrip = notifyMenu;
            this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
            this.notifyIcon1.Text = "lentum";
            this.notifyIcon1.Visible = true;
            // 
            // about_version
            // 
            this.about_version.Name = "about_version";
            this.about_version.Size = new System.Drawing.Size(155, 22);
            this.about_version.Text = "lentumについて";
            this.about_version.Click += new System.EventHandler(this.about_version_Click);
            notifyMenu.ResumeLayout(false);

        }
开发者ID:kousokujin,项目名称:lentum,代码行数:71,代码来源:NotifyIconWrapper.Designer.cs

示例4: InitializeComponent

        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            components = new System.ComponentModel.Container();
            _MenuStripMain = new System.Windows.Forms.MenuStrip();
            _StatusStripMain = new System.Windows.Forms.StatusStrip();
            _SplitContainerMain = new System.Windows.Forms.SplitContainer();
            _DataGridViewDevicesList = new System.Windows.Forms.DataGridView();
            _ContextMenuStripDevicesList = new System.Windows.Forms.ContextMenuStrip(components);
            _ToolStripMenuItemAddDevice = new System.Windows.Forms.ToolStripMenuItem();
            _ToolStripMenuItemRemoveDevice = new System.Windows.Forms.ToolStripMenuItem();
            _TabControlDevice = new System.Windows.Forms.TabControl();
            _TabPageHoldingRegisters = new System.Windows.Forms.TabPage();
            _DataGridViewHoldingRegisters = new System.Windows.Forms.DataGridView();
            _ContextMenuStripHoldingRegisters = new System.Windows.Forms.ContextMenuStrip(components);
            _ToolStripMenuItemAddHoldingRegister = new System.Windows.Forms.ToolStripMenuItem();
            _ToolStripMenuItemRemoveHoldingRegister = new System.Windows.Forms.ToolStripMenuItem();
            _TabPageInputRegisters = new System.Windows.Forms.TabPage();
            _DataGridViewInputRegisters = new System.Windows.Forms.DataGridView();
            _ContextMenuStripInputRegisters = new System.Windows.Forms.ContextMenuStrip(components);
            _ToolStripMenuItemAddInputRegister = new System.Windows.Forms.ToolStripMenuItem();
            _ToolStripMenuItemRemoveInputRegister = new System.Windows.Forms.ToolStripMenuItem();
            _TabPageCoils = new System.Windows.Forms.TabPage();
            _DataGridViewCoils = new System.Windows.Forms.DataGridView();
            _ContextMenuStripCoils = new System.Windows.Forms.ContextMenuStrip(components);
            _ToolStripMenuItemAddCoil = new System.Windows.Forms.ToolStripMenuItem();
            _ToolStripMenuItemRemoveCoil = new System.Windows.Forms.ToolStripMenuItem();
            _TabPageDiscretesInputs = new System.Windows.Forms.TabPage();
            _DataGridViewDiscretesInputs = new System.Windows.Forms.DataGridView();
            _ContextMenuStripDiscretesInputs = new System.Windows.Forms.ContextMenuStrip(components);
            _ToolStripMenuItemAddDiscreteInput = new System.Windows.Forms.ToolStripMenuItem();
            _ToolStripMenuItemRemoveDiscreteInput = new System.Windows.Forms.ToolStripMenuItem();
            _TabPageFiles = new System.Windows.Forms.TabPage();
            _SplitContainerFiles = new System.Windows.Forms.SplitContainer();
            _DataGridViewFiles = new System.Windows.Forms.DataGridView();
            _ContextMenuStripFiles = new System.Windows.Forms.ContextMenuStrip(components);
            _ToolStripMenuItemAddFile = new System.Windows.Forms.ToolStripMenuItem();
            _ToolStripMenuItemRemoveFile = new System.Windows.Forms.ToolStripMenuItem();
            _DataGridViewRecords = new System.Windows.Forms.DataGridView();
            _ContextMenuStripRecords = new System.Windows.Forms.ContextMenuStrip(components);
            _ToolStripMenuItemAddRecord = new System.Windows.Forms.ToolStripMenuItem();
            _ToolStripMenuItemRemoveRecord = new System.Windows.Forms.ToolStripMenuItem();
            _SplitContainerMain.Panel1.SuspendLayout();
            _SplitContainerMain.Panel2.SuspendLayout();
            _SplitContainerMain.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(_DataGridViewDevicesList)).BeginInit();
            _ContextMenuStripDevicesList.SuspendLayout();
            _TabControlDevice.SuspendLayout();
            _TabPageHoldingRegisters.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(_DataGridViewHoldingRegisters)).BeginInit();
            _ContextMenuStripHoldingRegisters.SuspendLayout();
            _TabPageInputRegisters.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(_DataGridViewInputRegisters)).BeginInit();
            _ContextMenuStripInputRegisters.SuspendLayout();
            _TabPageCoils.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(_DataGridViewCoils)).BeginInit();
            _ContextMenuStripCoils.SuspendLayout();
            _TabPageDiscretesInputs.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(_DataGridViewDiscretesInputs)).BeginInit();
            _ContextMenuStripDiscretesInputs.SuspendLayout();
            _TabPageFiles.SuspendLayout();
            _SplitContainerFiles.Panel1.SuspendLayout();
            _SplitContainerFiles.Panel2.SuspendLayout();
            _SplitContainerFiles.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(_DataGridViewFiles)).BeginInit();
            _ContextMenuStripFiles.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(_DataGridViewRecords)).BeginInit();
            _ContextMenuStripRecords.SuspendLayout();
            SuspendLayout();
            // 
            // _MenuStripMain
            // 
            _MenuStripMain.Location = new System.Drawing.Point(0, 0);
            _MenuStripMain.Name = "_MenuStripMain";
            _MenuStripMain.Size = new System.Drawing.Size(880, 24);
            _MenuStripMain.TabIndex = 0;
            _MenuStripMain.Text = "menuStrip1";
            // 
            // _StatusStripMain
            // 
            _StatusStripMain.Location = new System.Drawing.Point(0, 434);
            _StatusStripMain.Name = "_StatusStripMain";
            _StatusStripMain.Size = new System.Drawing.Size(880, 22);
            _StatusStripMain.TabIndex = 1;
            _StatusStripMain.Text = "statusStrip1";
            // 
            // _SplitContainerMain
            // 
            _SplitContainerMain.Dock = System.Windows.Forms.DockStyle.Fill;
            _SplitContainerMain.Location = new System.Drawing.Point(0, 24);
            _SplitContainerMain.Name = "_SplitContainerMain";
            // 
            // _SplitContainerMain.Panel1
            // 
            _SplitContainerMain.Panel1.Controls.Add(_DataGridViewDevicesList);
            // 
            // _SplitContainerMain.Panel2
//.........这里部分代码省略.........
开发者ID:serialbus,项目名称:NGK,代码行数:101,代码来源:FormEditNetworkController.Designer.cs

示例5: InitializeComponent

        /// <summary>
        /// Required method for Designer support - do not modify 
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.Windows.Forms.ContextMenuStrip ctxMenu;
            System.Windows.Forms.ToolStripMenuItem noneMenuItem;
            System.Windows.Forms.ToolStripSeparator sep1;
            System.Windows.Forms.ToolStripSeparator sep2;
            this.tabMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.returnMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.escMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.prtscMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.ctrlMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.altMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.winMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.shiftMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            ctxMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
            noneMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            sep1 = new System.Windows.Forms.ToolStripSeparator();
            sep2 = new System.Windows.Forms.ToolStripSeparator();
            ctxMenu.SuspendLayout();
            this.SuspendLayout();
            // 
            // ctxMenu
            // 
            ctxMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            noneMenuItem,
            sep1,
            this.tabMenuItem,
            this.returnMenuItem,
            this.escMenuItem,
            this.prtscMenuItem,
            sep2,
            this.ctrlMenuItem,
            this.altMenuItem,
            this.winMenuItem,
            this.shiftMenuItem});
            ctxMenu.Name = "ctxMenu";
            ctxMenu.Size = new System.Drawing.Size(111, 214);
            // 
            // noneMenuItem
            // 
            noneMenuItem.Name = "noneMenuItem";
            noneMenuItem.Size = new System.Drawing.Size(110, 22);
            noneMenuItem.Text = "None";
            noneMenuItem.Click += new System.EventHandler(this.noneMenuItem_Click);
            // 
            // sep1
            // 
            sep1.Name = "sep1";
            sep1.Size = new System.Drawing.Size(107, 6);
            // 
            // tabMenuItem
            // 
            this.tabMenuItem.Name = "tabMenuItem";
            this.tabMenuItem.Size = new System.Drawing.Size(110, 22);
            this.tabMenuItem.Click += new System.EventHandler(this.tabMenuItem_Click);
            // 
            // returnMenuItem
            // 
            this.returnMenuItem.Name = "returnMenuItem";
            this.returnMenuItem.Size = new System.Drawing.Size(110, 22);
            this.returnMenuItem.Click += new System.EventHandler(this.returnMenuItem_Click);
            // 
            // escMenuItem
            // 
            this.escMenuItem.Name = "escMenuItem";
            this.escMenuItem.Size = new System.Drawing.Size(110, 22);
            this.escMenuItem.Click += new System.EventHandler(this.escMenuItem_Click);
            // 
            // prtscMenuItem
            // 
            this.prtscMenuItem.Name = "prtscMenuItem";
            this.prtscMenuItem.Size = new System.Drawing.Size(110, 22);
            this.prtscMenuItem.Click += new System.EventHandler(this.prtscMenuItem_Click);
            // 
            // sep2
            // 
            sep2.Name = "sep2";
            sep2.Size = new System.Drawing.Size(107, 6);
            // 
            // ctrlMenuItem
            // 
            this.ctrlMenuItem.Name = "ctrlMenuItem";
            this.ctrlMenuItem.Size = new System.Drawing.Size(110, 22);
            this.ctrlMenuItem.Click += new System.EventHandler(this.ctrlMenuItem_Click);
            // 
            // altMenuItem
            // 
            this.altMenuItem.Name = "altMenuItem";
            this.altMenuItem.Size = new System.Drawing.Size(110, 22);
            this.altMenuItem.Click += new System.EventHandler(this.altMenuItem_Click);
            // 
            // winMenuItem
            // 
            this.winMenuItem.Name = "winMenuItem";
            this.winMenuItem.Size = new System.Drawing.Size(110, 22);
//.........这里部分代码省略.........
开发者ID:gsbastian,项目名称:Switcheroo,代码行数:101,代码来源:ShortcutBox.Designer.cs

示例6: InitializeComponent

		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
            this.components = new System.ComponentModel.Container();
            System.Windows.Forms.TabControl m_tabs;
            System.Windows.Forms.TabPage calculatorTab;
            System.Windows.Forms.TabPage symbolsTab;
            System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
            System.Windows.Forms.ContextMenuStrip m_currenciesContextMenu;
            System.Windows.Forms.ToolStripMenuItem addToolStripMenuItem4;
            System.Windows.Forms.ToolStripMenuItem removeToolStripMenuItem4;
            System.Windows.Forms.ToolStripMenuItem addMajorCurrenciesToolStripMenuItem;
            System.Windows.Forms.ToolStripMenuItem moveUpToolStripMenuItem;
            System.Windows.Forms.ToolStripMenuItem moveDownToolStripMenuItem;
            System.Windows.Forms.TabPage accountsAndTradesTab;
            System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
            System.Windows.Forms.MenuStrip mainMenu;
            System.Windows.Forms.ToolStripMenuItem openToolStripMenuItem;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
            System.Windows.Forms.ToolStripMenuItem saveToolStripMenuItem;
            System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
            System.Windows.Forms.ToolStripMenuItem serverToolStripMenuItem;
            System.Windows.Forms.ToolStripMenuItem getSymbolsAndQuotesToolStripMenuItem;
            System.Windows.Forms.Label label1;
            this.m_calculatorTabPropertyGrid = new System.Windows.Forms.PropertyGrid();
            this.m_symbols = new System.Windows.Forms.ListBox();
            this.m_symbolsContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.addToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
            this.removeToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
            this.m_symbolsTabPropertyGrid = new System.Windows.Forms.PropertyGrid();
            this.currenciesTab = new System.Windows.Forms.TabPage();
            this.m_currencies = new System.Windows.Forms.ListBox();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.quotesTab = new System.Windows.Forms.TabPage();
            this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
            this.m_quotes = new System.Windows.Forms.ListBox();
            this.m_quotesContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.addToolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem();
            this.removeToolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem();
            this.m_quotesTabPropertyGrid = new System.Windows.Forms.PropertyGrid();
            this.m_accounts = new System.Windows.Forms.ListBox();
            this.m_acccountsContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.addToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.removeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.m_trades = new System.Windows.Forms.ListBox();
            this.m_tradesContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.addToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.removeToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.m_accountsTabPropertyGrid = new System.Windows.Forms.PropertyGrid();
            this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.m_calculate = new System.Windows.Forms.Button();
            this.m_clear = new System.Windows.Forms.Button();
            this.m_openFileDialog = new System.Windows.Forms.OpenFileDialog();
            this.m_saveFileDialog = new System.Windows.Forms.SaveFileDialog();
            this.m_calculationTime = new System.Windows.Forms.TextBox();
            m_tabs = new System.Windows.Forms.TabControl();
            calculatorTab = new System.Windows.Forms.TabPage();
            symbolsTab = new System.Windows.Forms.TabPage();
            tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
            m_currenciesContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
            addToolStripMenuItem4 = new System.Windows.Forms.ToolStripMenuItem();
            removeToolStripMenuItem4 = new System.Windows.Forms.ToolStripMenuItem();
            addMajorCurrenciesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            moveUpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            moveDownToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            accountsAndTradesTab = new System.Windows.Forms.TabPage();
            tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
            mainMenu = new System.Windows.Forms.MenuStrip();
            openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            saveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            serverToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            getSymbolsAndQuotesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            label1 = new System.Windows.Forms.Label();
            m_tabs.SuspendLayout();
            calculatorTab.SuspendLayout();
            symbolsTab.SuspendLayout();
            tableLayoutPanel2.SuspendLayout();
            this.m_symbolsContextMenu.SuspendLayout();
            this.currenciesTab.SuspendLayout();
            m_currenciesContextMenu.SuspendLayout();
            this.quotesTab.SuspendLayout();
            this.tableLayoutPanel3.SuspendLayout();
            this.m_quotesContextMenu.SuspendLayout();
            accountsAndTradesTab.SuspendLayout();
            tableLayoutPanel1.SuspendLayout();
            this.m_acccountsContextMenu.SuspendLayout();
            this.m_tradesContextMenu.SuspendLayout();
            mainMenu.SuspendLayout();
            this.SuspendLayout();
            // 
            // m_tabs
            // 
            m_tabs.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            m_tabs.Controls.Add(calculatorTab);
//.........这里部分代码省略.........
开发者ID:ifzz,项目名称:FDK,代码行数:101,代码来源:MainForm.Designer.cs

示例7: InitializeComponent

		/// <summary>
		/// デザイナー サポートに必要なメソッドです。このメソッドの内容を
		/// コード エディターで変更しないでください。
		/// </summary>
		private void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			System.Windows.Forms.ContextMenuStrip conImage;
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ContentsView));
			this.itmOpen = new System.Windows.Forms.ToolStripMenuItem();
			this.itmDelete = new System.Windows.Forms.ToolStripMenuItem();
			this.sepImage1 = new System.Windows.Forms.ToolStripSeparator();
			this.itmExport = new System.Windows.Forms.ToolStripMenuItem();
			this.itmExtract = new System.Windows.Forms.ToolStripMenuItem();
			this.sepImage2 = new System.Windows.Forms.ToolStripSeparator();
			this.itmAddToBookmark = new System.Windows.Forms.ToolStripMenuItem();
			this.dgvImages = new Comical.Controls.DraggableDataGridView();
			this.clmImage = new System.Windows.Forms.DataGridViewImageColumn();
			this.clmViewMode = new System.Windows.Forms.DataGridViewComboBoxColumn();
			conImage = new System.Windows.Forms.ContextMenuStrip(this.components);
			conImage.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.dgvImages)).BeginInit();
			this.SuspendLayout();
			// 
			// conImage
			// 
			conImage.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.itmOpen,
            this.itmDelete,
            this.sepImage1,
            this.itmExport,
            this.itmExtract,
            this.sepImage2,
            this.itmAddToBookmark});
			conImage.Name = "conImage";
			resources.ApplyResources(conImage, "conImage");
			// 
			// itmOpen
			// 
			resources.ApplyResources(this.itmOpen, "itmOpen");
			this.itmOpen.Name = "itmOpen";
			this.itmOpen.Click += new System.EventHandler(this.itmOpen_Click);
			// 
			// itmDelete
			// 
			resources.ApplyResources(this.itmDelete, "itmDelete");
			this.itmDelete.Name = "itmDelete";
			this.itmDelete.Click += new System.EventHandler(this.itmDelete_Click);
			// 
			// sepImage1
			// 
			this.sepImage1.Name = "sepImage1";
			resources.ApplyResources(this.sepImage1, "sepImage1");
			// 
			// itmExport
			// 
			resources.ApplyResources(this.itmExport, "itmExport");
			this.itmExport.Name = "itmExport";
			// 
			// itmExtract
			// 
			resources.ApplyResources(this.itmExtract, "itmExtract");
			this.itmExtract.Name = "itmExtract";
			// 
			// sepImage2
			// 
			this.sepImage2.Name = "sepImage2";
			resources.ApplyResources(this.sepImage2, "sepImage2");
			// 
			// itmAddToBookmark
			// 
			this.itmAddToBookmark.Name = "itmAddToBookmark";
			resources.ApplyResources(this.itmAddToBookmark, "itmAddToBookmark");
			// 
			// dgvImages
			// 
			this.dgvImages.AllowDrop = true;
			this.dgvImages.AllowUserToAddRows = false;
			this.dgvImages.AllowUserToMoveRows = true;
			this.dgvImages.AllowUserToResizeColumns = false;
			this.dgvImages.AllowUserToResizeRows = false;
			this.dgvImages.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
			this.dgvImages.BackgroundColor = System.Drawing.SystemColors.Control;
			this.dgvImages.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.dgvImages.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.None;
			this.dgvImages.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
			this.dgvImages.ColumnHeadersVisible = false;
			this.dgvImages.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.clmImage,
            this.clmViewMode});
			this.dgvImages.ContextMenuStrip = conImage;
			resources.ApplyResources(this.dgvImages, "dgvImages");
			this.dgvImages.EditMode = System.Windows.Forms.DataGridViewEditMode.EditProgrammatically;
			this.dgvImages.GridColor = System.Drawing.SystemColors.Control;
			this.dgvImages.MultiDrag = true;
			this.dgvImages.Name = "dgvImages";
			this.dgvImages.RowHeadersVisible = false;
			this.dgvImages.RowTemplate.Height = 42;
			this.dgvImages.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
			this.dgvImages.ShowCellToolTips = false;
//.........这里部分代码省略.........
开发者ID:kavenblog,项目名称:Comical,代码行数:101,代码来源:ContentsView.Designer.cs

示例8: InitializeComponent

        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.Windows.Forms.ContextMenuStrip trayMenu;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainFormPaintDotNet));
            this.configureToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.quitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.trayIcon = new System.Windows.Forms.NotifyIcon(this.components);
            this.hideButton = new System.Windows.Forms.Button();
            this.settings = new ScreenShooter.ScreenshotSettings();
            trayMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
            trayMenu.SuspendLayout();
            this.SuspendLayout();
            // 
            // trayMenu
            // 
            trayMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.configureToolStripMenuItem,
            this.toolStripSeparator1,
            this.quitToolStripMenuItem});
            trayMenu.Name = "trayMenu";
            trayMenu.Size = new System.Drawing.Size(140, 54);
            // 
            // configureToolStripMenuItem
            // 
            this.configureToolStripMenuItem.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.configureToolStripMenuItem.Name = "configureToolStripMenuItem";
            this.configureToolStripMenuItem.Size = new System.Drawing.Size(139, 22);
            this.configureToolStripMenuItem.Text = "&Configure";
            this.configureToolStripMenuItem.Click += new System.EventHandler(this.configureToolStripMenuItem_Click);
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(136, 6);
            // 
            // quitToolStripMenuItem
            // 
            this.quitToolStripMenuItem.Name = "quitToolStripMenuItem";
            this.quitToolStripMenuItem.Size = new System.Drawing.Size(139, 22);
            this.quitToolStripMenuItem.Text = "&Quit";
            this.quitToolStripMenuItem.Click += new System.EventHandler(this.quitToolStripMenuItem_Click);
            // 
            // trayIcon
            // 
            this.trayIcon.ContextMenuStrip = trayMenu;
            this.trayIcon.Text = "ScreenShooter Paint.NET Edition";
            this.trayIcon.Visible = true;
            this.trayIcon.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.trayIcon_MouseDoubleClick);
            // 
            // hideButton
            // 
            this.hideButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.hideButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.hideButton.Location = new System.Drawing.Point(301, 34);
            this.hideButton.Name = "hideButton";
            this.hideButton.Size = new System.Drawing.Size(75, 23);
            this.hideButton.TabIndex = 0;
            this.hideButton.Text = "Hide";
            this.hideButton.UseVisualStyleBackColor = true;
            this.hideButton.Click += new System.EventHandler(this.hideButton_Click);
            // 
            // settings
            // 
            this.settings.Location = new System.Drawing.Point(12, 12);
            this.settings.Name = "settings";
            this.settings.Size = new System.Drawing.Size(376, 304);
            this.settings.TabIndex = 1;
            this.settings.ScreenshotTaken += new ScreenShooter.ScreenshotSettings.ScreenshotHandler(this.settings_ScreenshotTaken);
            // 
            // MainFormPaintDotNet
            // 
            this.AcceptButton = this.hideButton;
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.CancelButton = this.hideButton;
            this.ClientSize = new System.Drawing.Size(400, 328);
            this.Controls.Add(this.hideButton);
            this.Controls.Add(this.settings);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MaximizeBox = false;
            this.Name = "MainFormPaintDotNet";
            this.Text = "ScreenShooter Paint.NET Edition";
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainFormPaintDotNet_FormClosing);
            trayMenu.ResumeLayout(false);
            this.ResumeLayout(false);

        }
开发者ID:hoangduit,项目名称:mwinapi,代码行数:94,代码来源:MainFormPaintDotNet.Designer.cs

示例9: InitializeComponent

		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent( )
		{
			this.components = new System.ComponentModel.Container();
			System.Windows.Forms.ContextMenuStrip m_contextMenu;
			System.Windows.Forms.ToolStripMenuItem m_ctxEditComputerList;
			System.Windows.Forms.ToolStripMenuItem m_ctxResetWindowPos;
			System.Windows.Forms.ToolStripMenuItem m_ctxAbout;
			this.m_ConnectButton = new System.Windows.Forms.Button();
			this.m_Timer = new System.Windows.Forms.Timer(this.components);
			this.m_AliasLabel = new System.Windows.Forms.Label();
			this.m_ComputerLabel = new System.Windows.Forms.Label();
			this.m_LogoPictureBox = new MillerX.RemoteDesktopPlus.LogoPictureBox();
			this.m_ComputerComboBox = new MillerX.RemoteDesktopPlus.ComputerComboBox();
			this.m_AliasComboBox = new System.Windows.Forms.ComboBox();
			this.m_ToolTip = new System.Windows.Forms.ToolTip(this.components);
			this.m_DrivesButton = new MillerX.RemoteDesktopPlus.SharedDrivesButton();
			this.m_AudioButton = new MillerX.RemoteDesktopPlus.AudioDestButton();
			this.m_ExpandAliasButton = new System.Windows.Forms.Button();
			m_contextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
			m_ctxEditComputerList = new System.Windows.Forms.ToolStripMenuItem();
			m_ctxResetWindowPos = new System.Windows.Forms.ToolStripMenuItem();
			m_ctxAbout = new System.Windows.Forms.ToolStripMenuItem();
			m_contextMenu.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.m_LogoPictureBox)).BeginInit();
			this.SuspendLayout();
			// 
			// m_contextMenu
			// 
			m_contextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            m_ctxEditComputerList,
            m_ctxResetWindowPos,
            m_ctxAbout});
			m_contextMenu.Name = "m_contextMenu";
			m_contextMenu.Size = new System.Drawing.Size(214, 92);
			// 
			// m_ctxEditComputerList
			// 
			m_ctxEditComputerList.Name = "m_ctxEditComputerList";
			m_ctxEditComputerList.Size = new System.Drawing.Size(213, 22);
			m_ctxEditComputerList.Text = "Edit Computer List";
			m_ctxEditComputerList.Click += new System.EventHandler(this.m_ctxEditComputerList_Click);
			// 
			// m_ctxResetWindowPos
			// 
			m_ctxResetWindowPos.Name = "m_ctxResetWindowPos";
			m_ctxResetWindowPos.Size = new System.Drawing.Size(213, 22);
			m_ctxResetWindowPos.Text = "Reset RD Window Position";
			m_ctxResetWindowPos.Click += new System.EventHandler(this.m_ctxResetWindowPos_Click);
			// 
			// m_ctxAbout
			// 
			m_ctxAbout.Name = "m_ctxAbout";
			m_ctxAbout.Size = new System.Drawing.Size(213, 22);
			m_ctxAbout.Text = "About...";
			m_ctxAbout.Click += new System.EventHandler(this.m_ctxAbout_Click);
			// 
			// m_ConnectButton
			// 
			this.m_ConnectButton.Location = new System.Drawing.Point(235, 157);
			this.m_ConnectButton.Name = "m_ConnectButton";
			this.m_ConnectButton.Size = new System.Drawing.Size(75, 28);
			this.m_ConnectButton.TabIndex = 6;
			this.m_ConnectButton.Text = "Connect";
			this.m_ConnectButton.UseVisualStyleBackColor = true;
			this.m_ConnectButton.Click += new System.EventHandler(this.m_ConnectButton_Click);
			// 
			// m_Timer
			// 
			this.m_Timer.Interval = 3000;
			this.m_Timer.Tick += new System.EventHandler(this.m_Timer_Tick);
			// 
			// m_AliasLabel
			// 
			this.m_AliasLabel.AutoSize = true;
			this.m_AliasLabel.Location = new System.Drawing.Point(11, 119);
			this.m_AliasLabel.Name = "m_AliasLabel";
			this.m_AliasLabel.Size = new System.Drawing.Size(32, 13);
			this.m_AliasLabel.TabIndex = 2;
			this.m_AliasLabel.Text = "&Alias:";
			// 
			// m_ComputerLabel
			// 
			this.m_ComputerLabel.AutoSize = true;
			this.m_ComputerLabel.Location = new System.Drawing.Point(11, 91);
			this.m_ComputerLabel.Name = "m_ComputerLabel";
			this.m_ComputerLabel.Size = new System.Drawing.Size(55, 13);
			this.m_ComputerLabel.TabIndex = 0;
			this.m_ComputerLabel.Text = "&Computer:";
			// 
			// m_LogoPictureBox
			// 
			this.m_LogoPictureBox.Dock = System.Windows.Forms.DockStyle.Top;
			this.m_LogoPictureBox.Location = new System.Drawing.Point(0, 0);
			this.m_LogoPictureBox.Name = "m_LogoPictureBox";
			this.m_LogoPictureBox.Size = new System.Drawing.Size(350, 72);
			this.m_LogoPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
//.........这里部分代码省略.........
开发者ID:rajeshwarn,项目名称:RemoteDesktopPlus,代码行数:101,代码来源:RemoteDesktopDialog.Designer.cs

示例10: InitializeComponent

		/// <summary>
		/// デザイナー サポートに必要なメソッドです。このメソッドの内容を
		/// コード エディターで変更しないでください。
		/// </summary>
		private void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			System.Windows.Forms.ContextMenuStrip conOption;
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Viewer));
			Comical.Controls.ToolStripRadioMenuItem itmOriginalSize;
			this.itmFitToWindow = new Comical.Controls.ToolStripRadioMenuItem();
			this.preMain = new Comical.Controls.Previewer();
			conOption = new System.Windows.Forms.ContextMenuStrip(this.components);
			itmOriginalSize = new Comical.Controls.ToolStripRadioMenuItem();
			conOption.SuspendLayout();
			this.SuspendLayout();
			// 
			// conOption
			// 
			conOption.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.itmFitToWindow,
            itmOriginalSize});
			conOption.Name = "conOption";
			resources.ApplyResources(conOption, "conOption");
			// 
			// itmFitToWindow
			// 
			this.itmFitToWindow.Checked = true;
			this.itmFitToWindow.CheckOnClick = true;
			this.itmFitToWindow.CheckState = System.Windows.Forms.CheckState.Checked;
			this.itmFitToWindow.Group = 0;
			this.itmFitToWindow.Name = "itmFitToWindow";
			resources.ApplyResources(this.itmFitToWindow, "itmFitToWindow");
			this.itmFitToWindow.CheckedChanged += new System.EventHandler(this.itmFitToWindow_CheckedChanged);
			// 
			// itmOriginalSize
			// 
			itmOriginalSize.CheckOnClick = true;
			itmOriginalSize.Group = 0;
			itmOriginalSize.Name = "itmOriginalSize";
			resources.ApplyResources(itmOriginalSize, "itmOriginalSize");
			itmOriginalSize.CheckedChanged += new System.EventHandler(this.itmFitToWindow_CheckedChanged);
			// 
			// preMain
			// 
			resources.ApplyResources(this.preMain, "preMain");
			this.preMain.BackColor = System.Drawing.Color.Transparent;
			this.preMain.Description = null;
			this.preMain.Font = System.Drawing.SystemFonts.MessageBoxFont;
			this.preMain.ForeColor = System.Drawing.Color.White;
			this.preMain.Image = null;
			this.preMain.Name = "preMain";
			this.preMain.StretchMode = Comical.Controls.PreviewerStretchMode.Uniform;
			// 
			// Viewer
			// 
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
			resources.ApplyResources(this, "$this");
			this.BackColor = System.Drawing.Color.Black;
			this.ContextMenuStrip = conOption;
			this.Controls.Add(this.preMain);
			this.DockAreas = ((WeifenLuo.WinFormsUI.Docking.DockAreas)((WeifenLuo.WinFormsUI.Docking.DockAreas.Float | WeifenLuo.WinFormsUI.Docking.DockAreas.Document)));
			this.MinimizeBox = false;
			this.Name = "Viewer";
			this.ShowHint = WeifenLuo.WinFormsUI.Docking.DockState.Document;
			this.ShowInTaskbar = false;
			this.TabPageContextMenuStrip = conOption;
			conOption.ResumeLayout(false);
			this.ResumeLayout(false);

		}
开发者ID:kavenblog,项目名称:Comical,代码行数:71,代码来源:Viewer.Designer.cs

示例11: InitializeComponent

        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
      this.components = new System.ComponentModel.Container();
      System.Windows.Forms.ContextMenuStrip trayMenu;
      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
      this.openToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
      this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripSeparator();
      this.exitToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
      this.splitContainer1 = new System.Windows.Forms.SplitContainer();
      this.pictureBox1 = new System.Windows.Forms.PictureBox();
      this.tree = new BrightIdeasSoftware.TreeListView();
      this.cName = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
      this.fancyRenderer = new SynNotes.FancyRenderer();
      this.cSort = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
      this.treeMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
      this.imageList1 = new System.Windows.Forms.ImageList(this.components);
      this.statusBar = new System.Windows.Forms.StatusStrip();
      this.btnAdd = new System.Windows.Forms.ToolStripDropDownButton();
      this.btnPin = new System.Windows.Forms.ToolStripDropDownButton();
      this.statusText = new System.Windows.Forms.ToolStripStatusLabel();
      this.btnSync = new System.Windows.Forms.ToolStripDropDownButton();
      this.tbSearch = new System.Windows.Forms.TextBox();
      this.panelFind = new System.Windows.Forms.Panel();
      this.tbFind = new System.Windows.Forms.TextBox();
      this.btnLexer = new System.Windows.Forms.Label();
      this.tagBox = new System.Windows.Forms.TextBox();
      this.label1 = new System.Windows.Forms.Label();
      this.scEdit = new ScintillaNET.Scintilla();
      this.lexerMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
      this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
      trayMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
      trayMenu.SuspendLayout();
      ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
      this.splitContainer1.Panel1.SuspendLayout();
      this.splitContainer1.Panel2.SuspendLayout();
      this.splitContainer1.SuspendLayout();
      ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
      ((System.ComponentModel.ISupportInitialize)(this.tree)).BeginInit();
      this.statusBar.SuspendLayout();
      this.panelFind.SuspendLayout();
      this.SuspendLayout();
      // 
      // trayMenu
      // 
      trayMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.openToolStripMenuItem1,
            this.toolStripMenuItem2,
            this.exitToolStripMenuItem1});
      trayMenu.Name = "contextMenuTray";
      trayMenu.Size = new System.Drawing.Size(104, 54);
      // 
      // openToolStripMenuItem1
      // 
      this.openToolStripMenuItem1.Name = "openToolStripMenuItem1";
      this.openToolStripMenuItem1.Size = new System.Drawing.Size(103, 22);
      this.openToolStripMenuItem1.Text = "Show";
      this.openToolStripMenuItem1.Click += new System.EventHandler(this.showToolStripMenuItem1_Click);
      // 
      // toolStripMenuItem2
      // 
      this.toolStripMenuItem2.Name = "toolStripMenuItem2";
      this.toolStripMenuItem2.Size = new System.Drawing.Size(100, 6);
      // 
      // exitToolStripMenuItem1
      // 
      this.exitToolStripMenuItem1.Name = "exitToolStripMenuItem1";
      this.exitToolStripMenuItem1.Size = new System.Drawing.Size(103, 22);
      this.exitToolStripMenuItem1.Text = "Exit";
      this.exitToolStripMenuItem1.Click += new System.EventHandler(this.exitToolStripMenuItem1_Click);
      // 
      // splitContainer1
      // 
      this.splitContainer1.BackColor = System.Drawing.Color.Gainsboro;
      this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
      this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
      this.splitContainer1.Location = new System.Drawing.Point(0, 0);
      this.splitContainer1.Margin = new System.Windows.Forms.Padding(0);
      this.splitContainer1.Name = "splitContainer1";
      // 
      // splitContainer1.Panel1
      // 
      this.splitContainer1.Panel1.Controls.Add(this.pictureBox1);
      this.splitContainer1.Panel1.Controls.Add(this.tree);
      this.splitContainer1.Panel1.Controls.Add(this.statusBar);
      this.splitContainer1.Panel1.Controls.Add(this.tbSearch);
      this.splitContainer1.Panel1.RightToLeft = System.Windows.Forms.RightToLeft.No;
      // 
      // splitContainer1.Panel2
      // 
      this.splitContainer1.Panel2.Controls.Add(this.panelFind);
      this.splitContainer1.Panel2.Controls.Add(this.btnLexer);
      this.splitContainer1.Panel2.Controls.Add(this.tagBox);
      this.splitContainer1.Panel2.Controls.Add(this.label1);
      this.splitContainer1.Panel2.Controls.Add(this.scEdit);
      this.splitContainer1.Panel2.RightToLeft = System.Windows.Forms.RightToLeft.No;
      this.splitContainer1.Size = new System.Drawing.Size(1014, 646);
//.........这里部分代码省略.........
开发者ID:flipswitchingmonkey,项目名称:SynNotes,代码行数:101,代码来源:Form.Designer.cs

示例12: InitializeComponent

		/// <summary>
		/// デザイナー サポートに必要なメソッドです。このメソッドの内容を
		/// コード エディターで変更しないでください。
		/// </summary>
		private void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			System.Windows.Forms.ContextMenuStrip conBookmark;
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(BookmarksView));
			this.itmSelectTarget = new System.Windows.Forms.ToolStripMenuItem();
			this.sepBookmark1 = new System.Windows.Forms.ToolStripSeparator();
			this.itmCreateNew = new System.Windows.Forms.ToolStripMenuItem();
			this.itmInsertAbove = new System.Windows.Forms.ToolStripMenuItem();
			this.itmInsertBelow = new System.Windows.Forms.ToolStripMenuItem();
			this.sepBookmark2 = new System.Windows.Forms.ToolStripSeparator();
			this.itmDelete = new System.Windows.Forms.ToolStripMenuItem();
			this.dgvBookmarks = new Comical.Controls.DraggableDataGridView();
			this.clmName = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.clmTarget = new System.Windows.Forms.DataGridViewTextBoxColumn();
			conBookmark = new System.Windows.Forms.ContextMenuStrip(this.components);
			conBookmark.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.dgvBookmarks)).BeginInit();
			this.SuspendLayout();
			// 
			// conBookmark
			// 
			resources.ApplyResources(conBookmark, "conBookmark");
			conBookmark.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.itmSelectTarget,
            this.sepBookmark1,
            this.itmCreateNew,
            this.itmInsertAbove,
            this.itmInsertBelow,
            this.sepBookmark2,
            this.itmDelete});
			conBookmark.Name = "conBookmark";
			// 
			// itmSelectTarget
			// 
			resources.ApplyResources(this.itmSelectTarget, "itmSelectTarget");
			this.itmSelectTarget.Name = "itmSelectTarget";
			this.itmSelectTarget.Click += new System.EventHandler(this.itmSelectTarget_Click);
			// 
			// sepBookmark1
			// 
			resources.ApplyResources(this.sepBookmark1, "sepBookmark1");
			this.sepBookmark1.Name = "sepBookmark1";
			// 
			// itmCreateNew
			// 
			resources.ApplyResources(this.itmCreateNew, "itmCreateNew");
			this.itmCreateNew.Name = "itmCreateNew";
			this.itmCreateNew.Click += new System.EventHandler(this.itmAdd_Click);
			// 
			// itmInsertAbove
			// 
			resources.ApplyResources(this.itmInsertAbove, "itmInsertAbove");
			this.itmInsertAbove.Name = "itmInsertAbove";
			this.itmInsertAbove.Click += new System.EventHandler(this.itmInsertAbove_Click);
			// 
			// itmInsertBelow
			// 
			resources.ApplyResources(this.itmInsertBelow, "itmInsertBelow");
			this.itmInsertBelow.Name = "itmInsertBelow";
			this.itmInsertBelow.Click += new System.EventHandler(this.itmInsertBelow_Click);
			// 
			// sepBookmark2
			// 
			resources.ApplyResources(this.sepBookmark2, "sepBookmark2");
			this.sepBookmark2.Name = "sepBookmark2";
			// 
			// itmDelete
			// 
			resources.ApplyResources(this.itmDelete, "itmDelete");
			this.itmDelete.Name = "itmDelete";
			this.itmDelete.Click += new System.EventHandler(this.itmRemove_Click);
			// 
			// dgvBookmarks
			// 
			resources.ApplyResources(this.dgvBookmarks, "dgvBookmarks");
			this.dgvBookmarks.AllowDrop = true;
			this.dgvBookmarks.AllowUserToAddRows = false;
			this.dgvBookmarks.AllowUserToMoveRows = true;
			this.dgvBookmarks.AllowUserToResizeColumns = false;
			this.dgvBookmarks.AllowUserToResizeRows = false;
			this.dgvBookmarks.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
			this.dgvBookmarks.BackgroundColor = System.Drawing.SystemColors.Control;
			this.dgvBookmarks.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.dgvBookmarks.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.None;
			this.dgvBookmarks.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
			this.dgvBookmarks.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
			this.dgvBookmarks.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.clmName,
            this.clmTarget});
			this.dgvBookmarks.ContextMenuStrip = conBookmark;
			this.dgvBookmarks.EditMode = System.Windows.Forms.DataGridViewEditMode.EditOnF2;
			this.dgvBookmarks.GridColor = System.Drawing.SystemColors.Control;
			this.dgvBookmarks.Name = "dgvBookmarks";
			this.dgvBookmarks.RowHeadersVisible = false;
			this.dgvBookmarks.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
//.........这里部分代码省略.........
开发者ID:kavenblog,项目名称:Comical,代码行数:101,代码来源:BookmarksView.Designer.cs

示例13: InitializeComponent

        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        void InitializeComponent()
        {
            components = new System.ComponentModel.Container();
            var resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
            ImageList = new System.Windows.Forms.ImageList(components);
            btnSavePath = new System.Windows.Forms.ToolStripButton();
            toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            URL = new System.Windows.Forms.ToolStripTextBox();
            toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
            lbTask = new System.Windows.Forms.ToolStripLabel();
            MaxDownloaders = new System.Windows.Forms.ToolStripComboBox();
            FBD = new System.Windows.Forms.FolderBrowserDialog();
            Tray = new System.Windows.Forms.NotifyIcon(components);
            Toolbar = new System.Windows.Forms.ToolStrip();
            lbSplit = new System.Windows.Forms.ToolStripLabel();
            MaxConnections = new System.Windows.Forms.ToolStripComboBox();
            btnOption = new System.Windows.Forms.ToolStripDropDownButton();
            miEditINI = new System.Windows.Forms.ToolStripMenuItem();
            miTrace = new System.Windows.Forms.ToolStripMenuItem();
            debug = new System.Windows.Forms.ToolStripMenuItem();
            info = new System.Windows.Forms.ToolStripMenuItem();
            notice = new System.Windows.Forms.ToolStripMenuItem();
            warn = new System.Windows.Forms.ToolStripMenuItem();
            error = new System.Windows.Forms.ToolStripMenuItem();
            miLog = new System.Windows.Forms.ToolStripMenuItem();
            toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
            miProxy = new System.Windows.Forms.ToolStripMenuItem();
            miConnection = new System.Windows.Forms.ToolStripMenuItem();
            toolStripMenuItem2 = new System.Windows.Forms.ToolStripSeparator();
            miClipboard = new System.Windows.Forms.ToolStripMenuItem();
            miParseOnly = new System.Windows.Forms.ToolStripMenuItem();
            miCopyURL = new System.Windows.Forms.ToolStripMenuItem();
            miRunDownloader = new System.Windows.Forms.ToolStripMenuItem();
            miSeparator0 = new System.Windows.Forms.ToolStripSeparator();
            miStayTop = new System.Windows.Forms.ToolStripMenuItem();
            miLanguage = new System.Windows.Forms.ToolStripMenuItem();
            miLangAuto = new System.Windows.Forms.ToolStripMenuItem();
            toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
            miLangChs = new System.Windows.Forms.ToolStripMenuItem();
            miLangEn = new System.Windows.Forms.ToolStripMenuItem();
            cmTaskList = new System.Windows.Forms.ContextMenuStrip(components);
            miOpen = new System.Windows.Forms.ToolStripMenuItem();
            miOpenDir = new System.Windows.Forms.ToolStripMenuItem();
            miSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            miMoveTop = new System.Windows.Forms.ToolStripMenuItem();
            miMoveUp = new System.Windows.Forms.ToolStripMenuItem();
            miMoveDown = new System.Windows.Forms.ToolStripMenuItem();
            miMoveBottom = new System.Windows.Forms.ToolStripMenuItem();
            miSeparator2 = new System.Windows.Forms.ToolStripSeparator();
            miDelete = new System.Windows.Forms.ToolStripMenuItem();
            miSeparator3 = new System.Windows.Forms.ToolStripSeparator();
            miSelectAll = new System.Windows.Forms.ToolStripMenuItem();
            OFD = new System.Windows.Forms.OpenFileDialog();
            MainSplit = new System.Windows.Forms.SplitContainer();
            TaskList = new KK.ListViewEX();
            colURL = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            colName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            colSize = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            colProgress = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            colSpeed = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            colETA = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            Memo = new System.Windows.Forms.RichTextBox();
            miShutdown = new System.Windows.Forms.ToolStripMenuItem();
            Toolbar.SuspendLayout();
            cmTaskList.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(MainSplit)).BeginInit();
            MainSplit.Panel1.SuspendLayout();
            MainSplit.Panel2.SuspendLayout();
            MainSplit.SuspendLayout();
            SuspendLayout();
            // 
            // ImageList
            // 
            ImageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("ImageList.ImageStream")));
            ImageList.TransparentColor = System.Drawing.Color.Magenta;
            ImageList.Images.SetKeyName(0, "");
            ImageList.Images.SetKeyName(1, "");
            // 
            // btnSavePath
            // 
            btnSavePath.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            resources.ApplyResources(btnSavePath, "btnSavePath");
            btnSavePath.Name = "btnSavePath";
			btnSavePath.Click += btnSavePath_Click;
            // 
            // toolStripSeparator1
            // 
            toolStripSeparator1.Name = "toolStripSeparator1";
            resources.ApplyResources(toolStripSeparator1, "toolStripSeparator1");
            // 
            // URL
            // 
            resources.ApplyResources(URL, "URL");
            URL.Name = "URL";
			URL.KeyDown += URL_KeyDown;
			URL.DoubleClick += URL_DoubleClick;
//.........这里部分代码省略.........
开发者ID:pl4y3pic,项目名称:ParseGet,代码行数:101,代码来源:MainForm.Designer.cs

示例14: InitializeComponent

        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
            this.libraryRebaseMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.histogramEntryBindingSource1 = new System.Windows.Forms.BindingSource(this.components);
            this.histogramEntryBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.textBox1 = new System.Windows.Forms.TextBox();
            this.button1 = new System.Windows.Forms.Button();
            this.regionMonitorCheckBox = new System.Windows.Forms.CheckBox();
            this.alternateResultsCheckbox = new System.Windows.Forms.CheckBox();
            this.instructionTracingCheckbox = new System.Windows.Forms.CheckBox();
            this.libraryLoadMonitoringCheckbox = new System.Windows.Forms.CheckBox();
            this.regionStartBox = new System.Windows.Forms.TextBox();
            this.regionEndBox = new System.Windows.Forms.TextBox();
            this.resultsFileBox = new System.Windows.Forms.TextBox();
            this.label1 = new System.Windows.Forms.Label();
            this.memoryPINDllPath = new System.Windows.Forms.TextBox();
            this.pinPathBox = new System.Windows.Forms.TextBox();
            this.label2 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.tabContainer = new System.Windows.Forms.TabControl();
            this.tabPage1 = new System.Windows.Forms.TabPage();
            this.traceOnStartCheckbox = new System.Windows.Forms.CheckBox();
            this.tabPage2 = new System.Windows.Forms.TabPage();
            this.snapshotStatusLabel = new System.Windows.Forms.Label();
            this.tracingStatusLabel = new System.Windows.Forms.Label();
            this.startManualTracingButton = new System.Windows.Forms.Button();
            this.snapshotButton = new System.Windows.Forms.Button();
            this.tabPage3 = new System.Windows.Forms.TabPage();
            this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
            this.loadedLibraryList = new System.Windows.Forms.ListBox();
            this.librariesBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.processInstructionFileButton = new System.Windows.Forms.Button();
            this.resultsGridView = new System.Windows.Forms.DataGridView();
            this.instructionnumberDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.addressDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.SystemCallName = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Depth = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.threadidDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.timeDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.LibraryName = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.instructionBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.loadedThreadList = new System.Windows.Forms.ListBox();
            this.threadBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.lowDepthTextBox = new System.Windows.Forms.TextBox();
            this.highDepthTextBox = new System.Windows.Forms.TextBox();
            this.tabPage4 = new System.Windows.Forms.TabPage();
            this.histogramDataView = new System.Windows.Forms.DataGridView();
            this.addressDataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.countDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.histogramBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.timer1 = new System.Windows.Forms.Timer(this.components);
            contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
            contextMenuStrip1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.histogramEntryBindingSource1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.histogramEntryBindingSource)).BeginInit();
            this.tabContainer.SuspendLayout();
            this.tabPage1.SuspendLayout();
            this.tabPage2.SuspendLayout();
            this.tabPage3.SuspendLayout();
            this.tableLayoutPanel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.librariesBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.resultsGridView)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.instructionBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.threadBindingSource)).BeginInit();
            this.tabPage4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.histogramDataView)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.histogramBindingSource)).BeginInit();
            this.SuspendLayout();
            // 
            // contextMenuStrip1
            // 
            contextMenuStrip1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
            contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.libraryRebaseMenuItem});
            contextMenuStrip1.Name = "contextMenuStrip1";
            contextMenuStrip1.ShowImageMargin = false;
            contextMenuStrip1.Size = new System.Drawing.Size(128, 48);
            // 
            // libraryRebaseMenuItem
            // 
            this.libraryRebaseMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
            this.libraryRebaseMenuItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.libraryRebaseMenuItem.Name = "libraryRebaseMenuItem";
            this.libraryRebaseMenuItem.Size = new System.Drawing.Size(127, 22);
            this.libraryRebaseMenuItem.Text = "Library Rebase";
            this.libraryRebaseMenuItem.Click += new System.EventHandler(this.toolStripMenuItem1_Click);
            // 
            // histogramEntryBindingSource1
            // 
            this.histogramEntryBindingSource1.DataSource = typeof(MemoryPINGui.HistogramEntry);
            // 
            // textBox1
            // 
//.........这里部分代码省略.........
开发者ID:IMCG,项目名称:MemoryPIn,代码行数:101,代码来源:Form1.Designer.cs

示例15: InitializeComponent


//.........这里部分代码省略.........
            toolStripSeparator19 = new System.Windows.Forms.ToolStripSeparator();
            File_ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            NewPage_ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            Open_ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            toolStripSeparator11 = new System.Windows.Forms.ToolStripSeparator();
            SaveAs_ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            toolStripSeparator12 = new System.Windows.Forms.ToolStripSeparator();
            Print_ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            PrintPreview_ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            toolStripSeparator13 = new System.Windows.Forms.ToolStripSeparator();
            ShowPropertoes_ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            toolStripSeparator22 = new System.Windows.Forms.ToolStripSeparator();
            Exit_ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            View_toolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            Tree_ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            Properties_ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            Edit_ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            Undo_ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            Redo_ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            toolStripSeparator14 = new System.Windows.Forms.ToolStripSeparator();
            Cut_ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            Delete_ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            Copy_ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            Paste_ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            toolStripSeparator15 = new System.Windows.Forms.ToolStripSeparator();
            SelectAll_ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            FontStyle_ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            SetFont_ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            文字装飾ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            位置揃えToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            bottom_splitter1 = new System.Windows.Forms.Splitter();
            upper_splitter = new System.Windows.Forms.Splitter();
            vertical_splitter = new System.Windows.Forms.Splitter();
            contextMenuStrip2.SuspendLayout();
            menuStrip1.SuspendLayout();
            this.contextMenuStrip1.SuspendLayout();
            this.statusStrip1.SuspendLayout();
            this.tableLayoutPanel1.SuspendLayout();
            this.SuspendLayout();
            // 
            // 内容を更新するToolStripMenuItem
            // 
            内容を更新するToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            このノード以下ToolStripMenuItem,
            削除ToolStripMenuItem});
            内容を更新するToolStripMenuItem.Name = "内容を更新するToolStripMenuItem";
            内容を更新するToolStripMenuItem.Size = new System.Drawing.Size(160, 22);
            内容を更新するToolStripMenuItem.Text = "内容を更新する";
            内容を更新するToolStripMenuItem.Click += new System.EventHandler(this.Reload_Click);
            // 
            // このノード以下ToolStripMenuItem
            // 
            このノード以下ToolStripMenuItem.Name = "このノード以下ToolStripMenuItem";
            このノード以下ToolStripMenuItem.Size = new System.Drawing.Size(160, 22);
            このノード以下ToolStripMenuItem.Text = "このノード以下";
            このノード以下ToolStripMenuItem.Visible = false;
            // 
            // 削除ToolStripMenuItem
            // 
            削除ToolStripMenuItem.Name = "削除ToolStripMenuItem";
            削除ToolStripMenuItem.Size = new System.Drawing.Size(160, 22);
            削除ToolStripMenuItem.Text = "削除";
            削除ToolStripMenuItem.Visible = false;
            // 
            // contextMenuStrip2
            // 
开发者ID:aont,项目名称:MyBrowser,代码行数:67,代码来源:BrowserForm.Designer.cs


注:本文中的System.Windows.Forms.ContextMenuStrip.SuspendLayout方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。