本文整理汇总了C#中System.Windows.Forms.MenuStrip.ResumeLayout方法的典型用法代码示例。如果您正苦于以下问题:C# System.Windows.Forms.MenuStrip.ResumeLayout方法的具体用法?C# System.Windows.Forms.MenuStrip.ResumeLayout怎么用?C# System.Windows.Forms.MenuStrip.ResumeLayout使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Windows.Forms.MenuStrip
的用法示例。
在下文中一共展示了System.Windows.Forms.MenuStrip.ResumeLayout方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: InitializeComponent
//.........这里部分代码省略.........
//
// accountRegister
//
this.accountRegister.BackColor = System.Drawing.SystemColors.Window;
this.accountRegister.Dock = System.Windows.Forms.DockStyle.Fill;
this.accountRegister.Location = new System.Drawing.Point(0, 23);
this.accountRegister.Name = "accountRegister";
this.accountRegister.Size = new System.Drawing.Size(770, 333);
this.accountRegister.TabIndex = 3;
this.accountRegister.TransactionUpdated += new System.EventHandler<SharpBooks.UI.TransactionUpdatedEventArgs>(this.AccountRegister_TransactionUpdated);
this.accountRegister.TransactionCreated += new System.EventHandler<SharpBooks.UI.TransactionCreatedEventArgs>(this.AccountRegister_TransactionCreated);
//
// accountViewActions
//
this.accountViewActions.Controls.Add(this.newTransactionButton);
this.accountViewActions.Controls.Add(returnToAccountsButton);
this.accountViewActions.Dock = System.Windows.Forms.DockStyle.Top;
this.accountViewActions.Location = new System.Drawing.Point(0, 0);
this.accountViewActions.Name = "accountViewActions";
this.accountViewActions.Size = new System.Drawing.Size(770, 23);
this.accountViewActions.TabIndex = 4;
//
// newTransactionButton
//
this.newTransactionButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.newTransactionButton.Location = new System.Drawing.Point(662, 0);
this.newTransactionButton.Name = "newTransactionButton";
this.newTransactionButton.Size = new System.Drawing.Size(108, 23);
this.newTransactionButton.TabIndex = 1;
this.newTransactionButton.Text = "&New Transaction";
this.newTransactionButton.UseVisualStyleBackColor = true;
this.newTransactionButton.Click += new System.EventHandler(this.newTransactionButton_Click);
//
// accountTree
//
this.accountTree.Book = null;
this.accountTree.Dock = System.Windows.Forms.DockStyle.Fill;
this.accountTree.ImageList = this.accountImages;
this.accountTree.Location = new System.Drawing.Point(3, 3);
this.accountTree.Name = "accountTree";
this.accountTree.Size = new System.Drawing.Size(770, 356);
this.accountTree.TabIndex = 1;
this.accountTree.AccountSelected += new System.EventHandler<SharpBooks.Plugins.AccountSelectedEventArgs>(this.AccountTree_AccountSelected);
this.accountTree.NewAccountRequested += new System.EventHandler<SharpBooks.Plugins.NewAccountRequestedEventArgs>(this.AccountTree_NewAccountRequested);
this.accountTree.AccountDeleteRequested += new System.EventHandler<SharpBooks.Plugins.AccountDeleteRequestedEventArgs>(this.AccountTree_AccountDeleteRequested);
//
// accountImages
//
this.accountImages.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("accountImages.ImageStream")));
this.accountImages.TransparentColor = System.Drawing.Color.Transparent;
this.accountImages.Images.SetKeyName(0, "Coinstack.png");
//
// AccountsList
//
this.AccountsList.Dock = System.Windows.Forms.DockStyle.Fill;
this.AccountsList.Location = new System.Drawing.Point(3, 3);
this.AccountsList.Name = "AccountsList";
this.AccountsList.Size = new System.Drawing.Size(770, 356);
this.AccountsList.TabIndex = 0;
//
// PaymentsTabPage
//
this.PaymentsTabPage.Location = new System.Drawing.Point(4, 22);
this.PaymentsTabPage.Name = "PaymentsTabPage";
this.PaymentsTabPage.Padding = new System.Windows.Forms.Padding(3);
this.PaymentsTabPage.Size = new System.Drawing.Size(776, 362);
this.PaymentsTabPage.TabIndex = 2;
this.PaymentsTabPage.Text = "Payments";
this.PaymentsTabPage.UseVisualStyleBackColor = true;
//
// InvestmentsTabItem
//
this.InvestmentsTabItem.Location = new System.Drawing.Point(4, 22);
this.InvestmentsTabItem.Name = "InvestmentsTabItem";
this.InvestmentsTabItem.Padding = new System.Windows.Forms.Padding(3);
this.InvestmentsTabItem.Size = new System.Drawing.Size(776, 362);
this.InvestmentsTabItem.TabIndex = 3;
this.InvestmentsTabItem.Text = "Investments";
this.InvestmentsTabItem.UseVisualStyleBackColor = true;
//
// MainView
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(784, 412);
this.Controls.Add(this.tabView);
this.Controls.Add(mainMenu);
this.MainMenuStrip = mainMenu;
this.Name = "MainView";
this.Text = "MainView";
mainMenu.ResumeLayout(false);
mainMenu.PerformLayout();
this.tabView.ResumeLayout(false);
this.AccountsTabPage.ResumeLayout(false);
this.accountViewContainer.ResumeLayout(false);
this.accountViewActions.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
示例2: InitializeComponent
//.........这里部分代码省略.........
//
this.editToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.editToolStripButton.Image = global::NSass.Tool.Properties.Resources.Edit;
this.editToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.editToolStripButton.Name = "editToolStripButton";
this.editToolStripButton.Size = new System.Drawing.Size(23, 22);
this.editToolStripButton.Text = "toolStripButton1";
this.editToolStripButton.ToolTipText = "Edit project...";
this.editToolStripButton.Click += new System.EventHandler(this.EditProject);
//
// deleteToolStripButton
//
this.deleteToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.deleteToolStripButton.Image = global::NSass.Tool.Properties.Resources.Delete;
this.deleteToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.deleteToolStripButton.Name = "deleteToolStripButton";
this.deleteToolStripButton.Size = new System.Drawing.Size(23, 22);
this.deleteToolStripButton.Text = "toolStripButton2";
this.deleteToolStripButton.ToolTipText = "Delete project...";
this.deleteToolStripButton.Click += new System.EventHandler(this.DeleteProject);
//
// toolStripSeparator3
//
toolStripSeparator3.Name = "toolStripSeparator3";
toolStripSeparator3.Size = new System.Drawing.Size(6, 25);
//
// startStopToolStripButton
//
this.startStopToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.startStopToolStripButton.Image = global::NSass.Tool.Properties.Resources.Start;
this.startStopToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.startStopToolStripButton.Name = "startStopToolStripButton";
this.startStopToolStripButton.Size = new System.Drawing.Size(23, 22);
this.startStopToolStripButton.Text = "toolStripButton3";
this.startStopToolStripButton.ToolTipText = "Start preprocessing";
this.startStopToolStripButton.Click += new System.EventHandler(this.StartStopPreprocessing);
//
// toolStripSeparator4
//
toolStripSeparator4.Name = "toolStripSeparator4";
toolStripSeparator4.Size = new System.Drawing.Size(6, 25);
//
// exitToolStripButton
//
exitToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
exitToolStripButton.Image = global::NSass.Tool.Properties.Resources.Exit;
exitToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
exitToolStripButton.Name = "exitToolStripButton";
exitToolStripButton.Size = new System.Drawing.Size(23, 22);
exitToolStripButton.Text = "Exit";
exitToolStripButton.Click += new System.EventHandler(this.Exit);
//
// projectsListView
//
this.projectsListView.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)));
this.projectsListView.FullRowSelect = true;
this.projectsListView.Location = new System.Drawing.Point(12, 52);
this.projectsListView.MultiSelect = false;
this.projectsListView.Name = "projectsListView";
this.projectsListView.Size = new System.Drawing.Size(170, 498);
this.projectsListView.TabIndex = 2;
this.projectsListView.UseCompatibleStateImageBehavior = false;
this.projectsListView.View = System.Windows.Forms.View.List;
this.projectsListView.SelectedIndexChanged += new System.EventHandler(this.SelectedProjectChanged);
//
// logTextBox
//
this.logTextBox.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)));
this.logTextBox.BackColor = System.Drawing.SystemColors.Window;
this.logTextBox.Location = new System.Drawing.Point(188, 52);
this.logTextBox.Multiline = true;
this.logTextBox.Name = "logTextBox";
this.logTextBox.ReadOnly = true;
this.logTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.logTextBox.Size = new System.Drawing.Size(584, 498);
this.logTextBox.TabIndex = 3;
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(784, 562);
this.Controls.Add(this.logTextBox);
this.Controls.Add(this.projectsListView);
this.Controls.Add(mainToolStrip);
this.Controls.Add(mainMenuStrip);
this.MainMenuStrip = mainMenuStrip;
this.Name = "MainForm";
this.Text = "SASS/SCSS preprocessor";
mainMenuStrip.ResumeLayout(false);
mainMenuStrip.PerformLayout();
mainToolStrip.ResumeLayout(false);
mainToolStrip.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
示例3: InitializeComponent
//.........这里部分代码省略.........
this.searchBox.Name = "searchBox";
this.searchBox.Size = new System.Drawing.Size(130, 20);
this.searchBox.TabIndex = 0;
this.searchBox.TextChanged += new System.EventHandler(this.searchBox_TextChanged);
this.searchBox.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.searchBox_PreviewKeyDown);
//
// hitsBox
//
this.hitsBox.Dock = System.Windows.Forms.DockStyle.Fill;
this.hitsBox.FormattingEnabled = true;
this.hitsBox.Location = new System.Drawing.Point(0, 0);
this.hitsBox.Name = "hitsBox";
this.hitsBox.Size = new System.Drawing.Size(130, 381);
this.hitsBox.TabIndex = 0;
this.hitsBox.SelectedValueChanged += new System.EventHandler(this.hitsBox_SelectedValueChanged);
//
// webBrowser
//
this.webBrowser.Dock = System.Windows.Forms.DockStyle.Fill;
this.webBrowser.Location = new System.Drawing.Point(0, 0);
this.webBrowser.MinimumSize = new System.Drawing.Size(20, 20);
this.webBrowser.Name = "webBrowser";
this.webBrowser.Size = new System.Drawing.Size(428, 405);
this.webBrowser.TabIndex = 0;
//
// statusStrip1
//
statusStrip1.Dock = System.Windows.Forms.DockStyle.None;
statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.searchStatusLabel});
statusStrip1.Location = new System.Drawing.Point(0, 0);
statusStrip1.Name = "statusStrip1";
statusStrip1.Size = new System.Drawing.Size(562, 22);
statusStrip1.TabIndex = 2;
statusStrip1.Text = "statusStrip";
//
// searchStatusLabel
//
this.searchStatusLabel.Name = "searchStatusLabel";
this.searchStatusLabel.Size = new System.Drawing.Size(0, 17);
//
// timer
//
timer.Enabled = true;
timer.Tick += new System.EventHandler(this.timer_Tick);
//
// toolStripContainer1
//
//
// toolStripContainer1.BottomToolStripPanel
//
toolStripContainer1.BottomToolStripPanel.Controls.Add(statusStrip1);
//
// toolStripContainer1.ContentPanel
//
toolStripContainer1.ContentPanel.Controls.Add(splitContainer1);
toolStripContainer1.ContentPanel.Size = new System.Drawing.Size(562, 405);
toolStripContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
toolStripContainer1.LeftToolStripPanelVisible = false;
toolStripContainer1.Location = new System.Drawing.Point(0, 24);
toolStripContainer1.Name = "toolStripContainer1";
toolStripContainer1.RightToolStripPanelVisible = false;
toolStripContainer1.Size = new System.Drawing.Size(562, 427);
toolStripContainer1.TabIndex = 3;
toolStripContainer1.Text = "toolStripContainer1";
toolStripContainer1.TopToolStripPanelVisible = false;
//
// BrowseForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(562, 451);
this.Controls.Add(toolStripContainer1);
this.Controls.Add(menuStrip);
this.MainMenuStrip = menuStrip;
this.Name = "BrowseForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
this.Text = "BzReader";
this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.BrowseForm_FormClosing);
menuStrip.ResumeLayout(false);
menuStrip.PerformLayout();
splitContainer1.Panel1.ResumeLayout(false);
splitContainer1.Panel2.ResumeLayout(false);
splitContainer1.ResumeLayout(false);
splitContainer2.Panel1.ResumeLayout(false);
splitContainer2.Panel1.PerformLayout();
splitContainer2.Panel2.ResumeLayout(false);
splitContainer2.ResumeLayout(false);
statusStrip1.ResumeLayout(false);
statusStrip1.PerformLayout();
toolStripContainer1.BottomToolStripPanel.ResumeLayout(false);
toolStripContainer1.BottomToolStripPanel.PerformLayout();
toolStripContainer1.ContentPanel.ResumeLayout(false);
toolStripContainer1.ResumeLayout(false);
toolStripContainer1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
示例4: InitializeComponent
//.........这里部分代码省略.........
this.ringToolStripMenuItem.Text = "Ring";
this.ringToolStripMenuItem.Click += new System.EventHandler(this.ChangeTool);
//
// yellowSphereToolStripMenuItem
//
this.yellowSphereToolStripMenuItem.Image = global::BlueSpheresForeverEditor.Properties.Resources._5;
this.yellowSphereToolStripMenuItem.Name = "yellowSphereToolStripMenuItem";
this.yellowSphereToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.D5)));
this.yellowSphereToolStripMenuItem.Size = new System.Drawing.Size(188, 22);
this.yellowSphereToolStripMenuItem.Text = "Yellow Sphere";
this.yellowSphereToolStripMenuItem.Click += new System.EventHandler(this.ChangeTool);
//
// toolStripMenuItem2
//
this.toolStripMenuItem2.Name = "toolStripMenuItem2";
this.toolStripMenuItem2.Size = new System.Drawing.Size(185, 6);
//
// avoidSearchToolStripMenuItem
//
this.avoidSearchToolStripMenuItem.Name = "avoidSearchToolStripMenuItem";
this.avoidSearchToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.A)));
this.avoidSearchToolStripMenuItem.Size = new System.Drawing.Size(188, 22);
this.avoidSearchToolStripMenuItem.Text = "Avoid Search";
this.avoidSearchToolStripMenuItem.Click += new System.EventHandler(this.ChangeTool);
//
// helpToolStripMenuItem
//
this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.aboutToolStripMenuItem});
this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
this.helpToolStripMenuItem.Size = new System.Drawing.Size(24, 20);
this.helpToolStripMenuItem.Text = "&?";
//
// aboutToolStripMenuItem
//
this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
this.aboutToolStripMenuItem.Size = new System.Drawing.Size(107, 22);
this.aboutToolStripMenuItem.Text = "&About";
this.aboutToolStripMenuItem.Click += new System.EventHandler(this.ShowAbout);
//
// statusStrip1
//
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.CursorX,
this.CursorZ});
this.statusStrip1.Location = new System.Drawing.Point(0, 617);
this.statusStrip1.Name = "statusStrip1";
this.statusStrip1.Size = new System.Drawing.Size(912, 22);
this.statusStrip1.TabIndex = 2;
this.statusStrip1.Text = "statusStrip1";
//
// CursorX
//
this.CursorX.Name = "CursorX";
this.CursorX.Size = new System.Drawing.Size(14, 17);
this.CursorX.Text = "X";
//
// CursorZ
//
this.CursorZ.Name = "CursorZ";
this.CursorZ.Size = new System.Drawing.Size(14, 17);
this.CursorZ.Text = "Z";
//
// StageEditBoard
//
this.StageEditBoard.BackColor = System.Drawing.Color.Black;
this.StageEditBoard.Dock = System.Windows.Forms.DockStyle.Fill;
this.StageEditBoard.Location = new System.Drawing.Point(0, 24);
this.StageEditBoard.Name = "StageEditBoard";
this.StageEditBoard.Size = new System.Drawing.Size(912, 615);
this.StageEditBoard.TabIndex = 1;
this.StageEditBoard.TabStop = false;
this.StageEditBoard.Paint += new System.Windows.Forms.PaintEventHandler(this.PaintStageEditBoard);
this.StageEditBoard.MouseDown += new System.Windows.Forms.MouseEventHandler(this.EditStageBoardMouseEvents);
this.StageEditBoard.MouseMove += new System.Windows.Forms.MouseEventHandler(this.EditStageBoardMouseEvents);
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(912, 639);
this.Controls.Add(GroupStageProperties);
this.Controls.Add(this.statusStrip1);
this.Controls.Add(this.StageEditBoard);
this.Controls.Add(menuStrip1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MainMenuStrip = menuStrip1;
this.Name = "MainForm";
this.Text = "Blue Spheres Forever - Level Editor";
GroupStageProperties.ResumeLayout(false);
GroupStageProperties.PerformLayout();
menuStrip1.ResumeLayout(false);
menuStrip1.PerformLayout();
this.statusStrip1.ResumeLayout(false);
this.statusStrip1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.StageEditBoard)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
示例5: InitializeComponent
//.........这里部分代码省略.........
this.m_BlankViewControl.Location = new System.Drawing.Point(270,82);
this.m_BlankViewControl.Name = "m_BlankViewControl";
this.m_BlankViewControl.Size = new System.Drawing.Size(385,337);
this.m_BlankViewControl.TabIndex = 16;
this.m_BlankViewControl.Visible = false;
//
// m_EndpointViewControl
//
this.m_EndpointViewControl.BackColor = System.Drawing.SystemColors.Control;
this.m_EndpointViewControl.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.m_EndpointViewControl.Location = new System.Drawing.Point(270,82);
this.m_EndpointViewControl.Name = "m_EndpointViewControl";
this.m_EndpointViewControl.Size = new System.Drawing.Size(385,337);
this.m_EndpointViewControl.TabIndex = 15;
this.m_EndpointViewControl.Visible = false;
//
// m_OperationViewControl
//
this.m_OperationViewControl.BackColor = System.Drawing.SystemColors.Control;
this.m_OperationViewControl.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.m_OperationViewControl.Location = new System.Drawing.Point(270,82);
this.m_OperationViewControl.Name = "m_OperationViewControl";
this.m_OperationViewControl.Size = new System.Drawing.Size(385,337);
this.m_OperationViewControl.TabIndex = 14;
this.m_OperationViewControl.Visible = false;
//
// m_BindingViewControl
//
this.m_BindingViewControl.BackColor = System.Drawing.SystemColors.Control;
this.m_BindingViewControl.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.m_BindingViewControl.Location = new System.Drawing.Point(270,82);
this.m_BindingViewControl.Name = "m_BindingViewControl";
this.m_BindingViewControl.Size = new System.Drawing.Size(385,337);
this.m_BindingViewControl.TabIndex = 13;
this.m_BindingViewControl.Visible = false;
//
// m_ServiceViewControl
//
this.m_ServiceViewControl.BackColor = System.Drawing.SystemColors.Control;
this.m_ServiceViewControl.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.m_ServiceViewControl.Location = new System.Drawing.Point(270,82);
this.m_ServiceViewControl.Name = "m_ServiceViewControl";
this.m_ServiceViewControl.Size = new System.Drawing.Size(385,337);
this.m_ServiceViewControl.TabIndex = 12;
this.m_ServiceViewControl.Visible = false;
//
// m_AddressViewControl
//
this.m_AddressViewControl.BackColor = System.Drawing.SystemColors.Control;
this.m_AddressViewControl.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.m_AddressViewControl.Location = new System.Drawing.Point(270,82);
this.m_AddressViewControl.Name = "m_AddressViewControl";
this.m_AddressViewControl.Size = new System.Drawing.Size(385,337);
this.m_AddressViewControl.TabIndex = 11;
this.m_AddressViewControl.Visible = false;
//
// m_ContractViewControl
//
this.m_ContractViewControl.BackColor = System.Drawing.SystemColors.Control;
this.m_ContractViewControl.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.m_ContractViewControl.Location = new System.Drawing.Point(270,82);
this.m_ContractViewControl.Name = "m_ContractViewControl";
this.m_ContractViewControl.Size = new System.Drawing.Size(385,337);
this.m_ContractViewControl.TabIndex = 7;
this.m_ContractViewControl.Visible = false;
//
// ExplorerForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F,13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(666,433);
this.Controls.Add(this.m_DiscoverButton);
this.Controls.Add(this.m_BlankViewControl);
this.Controls.Add(this.m_EndpointViewControl);
this.Controls.Add(this.m_OperationViewControl);
this.Controls.Add(this.m_BindingViewControl);
this.Controls.Add(this.m_ServiceViewControl);
this.Controls.Add(this.m_AddressViewControl);
this.Controls.Add(this.m_ContractViewControl);
this.Controls.Add(this.m_MexAddressTextBox);
this.Controls.Add(mexAddressLabel);
this.Controls.Add(this.proxyButton);
this.Controls.Add(this.m_ExploreButton);
this.Controls.Add(this.m_MexTree);
this.Controls.Add(mainMenu);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MainMenuStrip = mainMenu;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "ExplorerForm";
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
this.Text = " Metadata Explorer";
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.OnClosed);
mainMenu.ResumeLayout(false);
mainMenu.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
示例6: InitializeComponent
//.........这里部分代码省略.........
//
// switchRemoteEngineToolStripMenuItem
//
switchRemoteEngineToolStripMenuItem.Name = "switchRemoteEngineToolStripMenuItem";
switchRemoteEngineToolStripMenuItem.Size = new System.Drawing.Size(192, 22);
switchRemoteEngineToolStripMenuItem.Text = "&Switch Remote Engine";
//
// helpToolStripMenuItem
//
helpToolStripMenuItem.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
aboutToolStripMenuItem});
helpToolStripMenuItem.Name = "helpToolStripMenuItem";
helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
helpToolStripMenuItem.Text = "&Help";
//
// aboutToolStripMenuItem
//
aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
aboutToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
aboutToolStripMenuItem.Text = "&About";
//
// statusStrip1
//
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this._NetworkStatusbar,
this._Statusbar,
this._ProgressBar});
this.statusStrip1.Location = new System.Drawing.Point(0, 540);
this.statusStrip1.Name = "statusStrip1";
this.statusStrip1.Size = new System.Drawing.Size(784, 24);
this.statusStrip1.TabIndex = 1;
this.statusStrip1.Text = "statusStrip1";
//
// _Statusbar
//
this._Statusbar.BorderSides = ((System.Windows.Forms.ToolStripStatusLabelBorderSides)((((System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top)
| System.Windows.Forms.ToolStripStatusLabelBorderSides.Right)
| System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom)));
this._Statusbar.BorderStyle = System.Windows.Forms.Border3DStyle.SunkenInner;
this._Statusbar.Name = "_Statusbar";
this._Statusbar.Size = new System.Drawing.Size(318, 19);
this._Statusbar.Spring = true;
this._Statusbar.Text = "Status";
this._Statusbar.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// _NetworkStatusbar
//
this._NetworkStatusbar.BorderSides = ((System.Windows.Forms.ToolStripStatusLabelBorderSides)((((System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top)
| System.Windows.Forms.ToolStripStatusLabelBorderSides.Right)
| System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom)));
this._NetworkStatusbar.BorderStyle = System.Windows.Forms.Border3DStyle.SunkenInner;
this._NetworkStatusbar.Name = "_NetworkStatusbar";
this._NetworkStatusbar.Size = new System.Drawing.Size(318, 19);
this._NetworkStatusbar.Spring = true;
this._NetworkStatusbar.Text = "NetworkStatus";
this._NetworkStatusbar.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// _ProgressBar
//
this._ProgressBar.Name = "_ProgressBar";
this._ProgressBar.Size = new System.Drawing.Size(100, 18);
//
// _Notebook
//
this._Notebook.Dock = System.Windows.Forms.DockStyle.Fill;
this._Notebook.Location = new System.Drawing.Point(0, 24);
this._Notebook.Name = "_Notebook";
this._Notebook.SelectedIndex = 0;
this._Notebook.Size = new System.Drawing.Size(784, 496);
this._Notebook.TabIndex = 2;
//
// _Entry
//
this._Entry.Dock = System.Windows.Forms.DockStyle.Bottom;
this._Entry.Location = new System.Drawing.Point(0, 520);
this._Entry.Name = "_Entry";
this._Entry.Size = new System.Drawing.Size(784, 20);
this._Entry.TabIndex = 3;
//
// MainWindow
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(784, 564);
this.Controls.Add(this._Notebook);
this.Controls.Add(this._Entry);
this.Controls.Add(this.statusStrip1);
this.Controls.Add(menuStrip1);
this.MainMenuStrip = menuStrip1;
this.Name = "MainWindow";
this.Text = "Smuxi - Smart MUltipleXed Irc";
menuStrip1.ResumeLayout(false);
menuStrip1.PerformLayout();
this.statusStrip1.ResumeLayout(false);
this.statusStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
示例7: InitializeComponent
//.........这里部分代码省略.........
copyToolStripMenuItem,
pasteToolStripMenuItem,
toolStripSeparator4,
selectAllToolStripMenuItem };
editToolStripMenuItem.DropDownItems.AddRange(toolStripItemArr3);
editToolStripMenuItem.Name = "editToolStripMenuItem";
editToolStripMenuItem.Size = new System.Drawing.Size(47, 20);
editToolStripMenuItem.Text = "&Editar";
editToolStripMenuItem.Visible = false;
undoToolStripMenuItem.Name = "undoToolStripMenuItem";
undoToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.Back | System.Windows.Forms.Keys.ShiftKey | System.Windows.Forms.Keys.Control;
undoToolStripMenuItem.Size = new System.Drawing.Size(150, 22);
undoToolStripMenuItem.Text = "&Undo";
redoToolStripMenuItem.Name = "redoToolStripMenuItem";
redoToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Back | System.Windows.Forms.Keys.ShiftKey | System.Windows.Forms.Keys.Control;
redoToolStripMenuItem.Size = new System.Drawing.Size(150, 22);
redoToolStripMenuItem.Text = "&Redo";
toolStripSeparator3.Name = "toolStripSeparator3";
toolStripSeparator3.Size = new System.Drawing.Size(147, 6);
cutToolStripMenuItem.Image = (System.Drawing.Image)componentResourceManager.GetObject("cutToolStripMenuItem.Image");
cutToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
cutToolStripMenuItem.Name = "cutToolStripMenuItem";
cutToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.Back | System.Windows.Forms.Keys.ShiftKey | System.Windows.Forms.Keys.Control;
cutToolStripMenuItem.Size = new System.Drawing.Size(150, 22);
cutToolStripMenuItem.Text = "Cu&t";
copyToolStripMenuItem.Image = (System.Drawing.Image)componentResourceManager.GetObject("copyToolStripMenuItem.Image");
copyToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
copyToolStripMenuItem.Name = "copyToolStripMenuItem";
copyToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.Control;
copyToolStripMenuItem.Size = new System.Drawing.Size(150, 22);
copyToolStripMenuItem.Text = "&Copy";
pasteToolStripMenuItem.Image = (System.Drawing.Image)componentResourceManager.GetObject("pasteToolStripMenuItem.Image");
pasteToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
pasteToolStripMenuItem.Name = "pasteToolStripMenuItem";
pasteToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.MButton | System.Windows.Forms.Keys.ShiftKey | System.Windows.Forms.Keys.Control;
pasteToolStripMenuItem.Size = new System.Drawing.Size(150, 22);
pasteToolStripMenuItem.Text = "&Paste";
toolStripSeparator4.Name = "toolStripSeparator4";
toolStripSeparator4.Size = new System.Drawing.Size(147, 6);
selectAllToolStripMenuItem.Name = "selectAllToolStripMenuItem";
selectAllToolStripMenuItem.Size = new System.Drawing.Size(150, 22);
selectAllToolStripMenuItem.Text = "Select &All";
System.Windows.Forms.ToolStripItem[] toolStripItemArr4 = new System.Windows.Forms.ToolStripItem[] {
customizeToolStripMenuItem,
optionsToolStripMenuItem };
toolsToolStripMenuItem.DropDownItems.AddRange(toolStripItemArr4);
toolsToolStripMenuItem.Name = "toolsToolStripMenuItem";
toolsToolStripMenuItem.Size = new System.Drawing.Size(83, 20);
toolsToolStripMenuItem.Text = "&Herramientas";
toolsToolStripMenuItem.Visible = false;
customizeToolStripMenuItem.Name = "customizeToolStripMenuItem";
customizeToolStripMenuItem.Size = new System.Drawing.Size(155, 22);
customizeToolStripMenuItem.Text = "Personali&zar...";
optionsToolStripMenuItem.Name = "optionsToolStripMenuItem";
optionsToolStripMenuItem.Size = new System.Drawing.Size(155, 22);
optionsToolStripMenuItem.Text = "Opcion&es...";
System.Windows.Forms.ToolStripItem[] toolStripItemArr5 = new System.Windows.Forms.ToolStripItem[] {
contentsToolStripMenuItem,
indexToolStripMenuItem,
searchToolStripMenuItem,
toolStripSeparator5,
aboutToolStripMenuItem };
helpToolStripMenuItem.DropDownItems.AddRange(toolStripItemArr5);
helpToolStripMenuItem.Name = "helpToolStripMenuItem";
helpToolStripMenuItem.Size = new System.Drawing.Size(50, 20);
helpToolStripMenuItem.Text = "Ay&uda";
helpToolStripMenuItem.Visible = false;
contentsToolStripMenuItem.Name = "contentsToolStripMenuItem";
contentsToolStripMenuItem.Size = new System.Drawing.Size(129, 22);
contentsToolStripMenuItem.Text = "&Contents";
indexToolStripMenuItem.Name = "indexToolStripMenuItem";
indexToolStripMenuItem.Size = new System.Drawing.Size(129, 22);
indexToolStripMenuItem.Text = "&Index";
searchToolStripMenuItem.Name = "searchToolStripMenuItem";
searchToolStripMenuItem.Size = new System.Drawing.Size(129, 22);
searchToolStripMenuItem.Text = "&Search";
toolStripSeparator5.Name = "toolStripSeparator5";
toolStripSeparator5.Size = new System.Drawing.Size(126, 6);
aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
aboutToolStripMenuItem.Size = new System.Drawing.Size(129, 22);
aboutToolStripMenuItem.Text = "&About...";
AutoScaleDimensions = new System.Drawing.SizeF(6.0F, 13.0F);
AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
ClientSize = new System.Drawing.Size(943, 676);
Controls.Add(dockPanel);
Controls.Add(menuStrip1);
DoubleBuffered = true;
Icon = (System.Drawing.Icon)componentResourceManager.GetObject("$this.Icon");
IsMdiContainer = true;
Name = "Form1";
StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
Text = "Intellitrack";
WindowState = System.Windows.Forms.FormWindowState.Maximized;
Shown += new System.EventHandler(Form1_Shown);
Layout += new System.Windows.Forms.LayoutEventHandler(Form1_Layout);
menuStrip1.ResumeLayout(false);
menuStrip1.PerformLayout();
ResumeLayout(false);
PerformLayout();
}
示例8: InitializeComponent
//.........这里部分代码省略.........
this._nameTextBox.TabIndex = 15;
//
// label4
//
this.label4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.label4.AutoSize = true;
this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label4.Location = new System.Drawing.Point(307, 30);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(43, 13);
this.label4.TabIndex = 13;
this.label4.Text = "Name:";
//
// _addPlayButton
//
this._addPlayButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this._addPlayButton.Location = new System.Drawing.Point(466, 286);
this._addPlayButton.Name = "_addPlayButton";
this._addPlayButton.Size = new System.Drawing.Size(75, 23);
this._addPlayButton.TabIndex = 12;
this._addPlayButton.Text = "Add Play";
this._addPlayButton.UseVisualStyleBackColor = true;
this._addPlayButton.Click += new System.EventHandler(this._addPlayButton_Click);
//
// _newGameButton
//
this._newGameButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this._newGameButton.Location = new System.Drawing.Point(145, 286);
this._newGameButton.Name = "_newGameButton";
this._newGameButton.Size = new System.Drawing.Size(75, 23);
this._newGameButton.TabIndex = 11;
this._newGameButton.Text = "Add";
this._newGameButton.UseVisualStyleBackColor = true;
this._newGameButton.Click += new System.EventHandler(this._newGameButton_Click);
//
// _deleteButton
//
this._deleteButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this._deleteButton.Location = new System.Drawing.Point(226, 286);
this._deleteButton.Name = "_deleteButton";
this._deleteButton.Size = new System.Drawing.Size(75, 23);
this._deleteButton.TabIndex = 10;
this._deleteButton.Text = "Delete";
this._deleteButton.UseVisualStyleBackColor = true;
this._deleteButton.Click += new System.EventHandler(this._deleteGameButton_Click);
//
// label5
//
this.label5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.label5.AutoSize = true;
this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label5.Location = new System.Drawing.Point(307, 116);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(77, 13);
this.label5.TabIndex = 6;
this.label5.Text = "Last Played:";
//
// label6
//
this.label6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.label6.AutoSize = true;
this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label6.Location = new System.Drawing.Point(430, 57);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(41, 13);
this.label6.TabIndex = 9;
this.label6.Text = "Plays:";
//
// _saveFileDialog
//
this._saveFileDialog.Filter = "Xml files (*.xml)|*.xml";
//
// _openFileDialog
//
this._openFileDialog.FileName = "openFileDialog1";
//
// GameManagerDialog
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(564, 365);
this.Controls.Add(this.toolStripContainer3);
this.MainMenuStrip = menuStrip1;
this.MinimumSize = new System.Drawing.Size(500, 276);
this.Name = "GameManagerDialog";
this.Padding = new System.Windows.Forms.Padding(10);
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Manage Your Collection";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.GameManagerDialog_FormClosing);
menuStrip1.ResumeLayout(false);
menuStrip1.PerformLayout();
this.toolStripContainer3.ContentPanel.ResumeLayout(false);
this.toolStripContainer3.ContentPanel.PerformLayout();
this.toolStripContainer3.TopToolStripPanel.ResumeLayout(false);
this.toolStripContainer3.TopToolStripPanel.PerformLayout();
this.toolStripContainer3.ResumeLayout(false);
this.toolStripContainer3.PerformLayout();
this.ResumeLayout(false);
}
示例9: InitializeComponent
//.........这里部分代码省略.........
this.initSys_butt,
this.shutSys_butt,
this.unblock_butt,
this.monitorToolStripButton,
this.sensmeasure_button,
this.overviewSplitButton,
this.inletToolStripButton});
this.controlToolStrip.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow;
resources.ApplyResources(this.controlToolStrip, "controlToolStrip");
this.controlToolStrip.Name = "controlToolStrip";
this.controlToolStrip.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
//
// connectToolStripButton
//
this.connectToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
resources.ApplyResources(this.connectToolStripButton, "connectToolStripButton");
this.connectToolStripButton.Name = "connectToolStripButton";
this.connectToolStripButton.Click += new System.EventHandler(this.connectToolStripButton_Click);
//
// monitorToolStripButton
//
this.monitorToolStripButton.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
this.monitorToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
resources.ApplyResources(this.monitorToolStripButton, "monitorToolStripButton");
this.monitorToolStripButton.Name = "monitorToolStripButton";
this.monitorToolStripButton.Click += new System.EventHandler(this.monitorToolStripButton_Click);
//
// overviewSplitButton
//
this.overviewSplitButton.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
this.overviewSplitButton.BackColor = System.Drawing.Color.White;
this.overviewSplitButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.sparseModeStripMenuItem});
resources.ApplyResources(this.overviewSplitButton, "overviewSplitButton");
this.overviewSplitButton.Name = "overviewSplitButton";
this.overviewSplitButton.ButtonClick += new System.EventHandler(this.overview_button_Click);
//
// sparseModeStripMenuItem
//
this.sparseModeStripMenuItem.Name = "sparseModeStripMenuItem";
resources.ApplyResources(this.sparseModeStripMenuItem, "sparseModeStripMenuItem");
this.sparseModeStripMenuItem.Click += new System.EventHandler(this.sparseModeToolStripMenuItem_Click);
//
// inletToolStripButton
//
resources.ApplyResources(this.inletToolStripButton, "inletToolStripButton");
this.inletToolStripButton.Name = "inletToolStripButton";
this.inletToolStripButton.Click += new System.EventHandler(this.inletToolStripButton_Click);
//
// parameterPanel
//
this.parameterPanel.BackColor = System.Drawing.SystemColors.Control;
this.parameterPanel.Controls.Add(this.statusTreeView);
resources.ApplyResources(this.parameterPanel, "parameterPanel");
this.parameterPanel.Name = "parameterPanel";
//
// statusTreeView
//
this.statusTreeView.BackColor = System.Drawing.SystemColors.Control;
this.statusTreeView.BorderStyle = System.Windows.Forms.BorderStyle.None;
resources.ApplyResources(this.statusTreeView, "statusTreeView");
this.statusTreeView.Name = "statusTreeView";
this.statusTreeView.ShowLines = false;
this.statusTreeView.ShowPlusMinus = false;
this.statusTreeView.StateImageList = this.statusTreeViewStateImageList;
//
// statusTreeViewStateImageList
//
this.statusTreeViewStateImageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("statusTreeViewStateImageList.ImageStream")));
this.statusTreeViewStateImageList.TransparentColor = System.Drawing.Color.Transparent;
this.statusTreeViewStateImageList.Images.SetKeyName(0, "warning");
this.statusTreeViewStateImageList.Images.SetKeyName(1, "error");
//
// openSpecterFileDialog
//
this.openSpecterFileDialog.InitialDirectory = ".";
//
// MainForm2
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.White;
this.Controls.Add(this.parameterPanel);
this.Controls.Add(this.controlToolStrip);
this.Controls.Add(menuStrip);
this.Controls.Add(this.statusStrip);
this.IsMdiContainer = true;
this.MainMenuStrip = menuStrip;
this.Name = "MainForm2";
menuStrip.ResumeLayout(false);
menuStrip.PerformLayout();
this.statusStrip.ResumeLayout(false);
this.statusStrip.PerformLayout();
this.controlToolStrip.ResumeLayout(false);
this.controlToolStrip.PerformLayout();
this.parameterPanel.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
示例10: InitializeComponent
//.........这里部分代码省略.........
this.backButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
resources.ApplyResources(this.backButton, "backButton");
this.backButton.Name = "backButton";
this.backButton.Click += new System.EventHandler(this.backButton_Click);
//
// nextButton
//
this.nextButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
resources.ApplyResources(this.nextButton, "nextButton");
this.nextButton.Name = "nextButton";
this.nextButton.Click += new System.EventHandler(this.nextButton_Click);
//
// closeToolStripMenuItem
//
this.closeToolStripMenuItem.Name = "closeToolStripMenuItem";
resources.ApplyResources(this.closeToolStripMenuItem, "closeToolStripMenuItem");
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
resources.ApplyResources(this.toolStripSeparator1, "toolStripSeparator1");
//
// exportStripMenuItem
//
this.exportStripMenuItem.Name = "exportStripMenuItem";
resources.ApplyResources(this.exportStripMenuItem, "exportStripMenuItem");
this.exportStripMenuItem.Click += new System.EventHandler(this.exportStripMenuItem_Click);
//
// toolStripSeparator4
//
this.toolStripSeparator4.Name = "toolStripSeparator4";
resources.ApplyResources(this.toolStripSeparator4, "toolStripSeparator4");
//
// exitToolStripMenuItem
//
this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
resources.ApplyResources(this.exitToolStripMenuItem, "exitToolStripMenuItem");
this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
//
// optionsToolStripMenuItem
//
this.optionsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.setHspellPathToolStripMenuItem});
this.optionsToolStripMenuItem.Name = "optionsToolStripMenuItem";
resources.ApplyResources(this.optionsToolStripMenuItem, "optionsToolStripMenuItem");
//
// setHspellPathToolStripMenuItem
//
this.setHspellPathToolStripMenuItem.Name = "setHspellPathToolStripMenuItem";
resources.ApplyResources(this.setHspellPathToolStripMenuItem, "setHspellPathToolStripMenuItem");
this.setHspellPathToolStripMenuItem.Click += new System.EventHandler(this.setHspellPathToolStripMenuItem_Click);
//
// helpToolStripMenuItem
//
this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.aboutToolStripMenuItem});
this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
resources.ApplyResources(this.helpToolStripMenuItem, "helpToolStripMenuItem");
//
// aboutToolStripMenuItem
//
this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
resources.ApplyResources(this.aboutToolStripMenuItem, "aboutToolStripMenuItem");
this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
//
// timer
//
timer.Enabled = true;
timer.Tick += new System.EventHandler(this.timer_Tick);
//
// BrowseForm
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(toolStripContainer1);
this.Controls.Add(menuStrip);
this.MainMenuStrip = menuStrip;
this.Name = "BrowseForm";
this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.BrowseForm_FormClosing);
menuStrip.ResumeLayout(false);
menuStrip.PerformLayout();
toolStripContainer1.BottomToolStripPanel.ResumeLayout(false);
toolStripContainer1.BottomToolStripPanel.PerformLayout();
toolStripContainer1.ContentPanel.ResumeLayout(false);
toolStripContainer1.TopToolStripPanel.ResumeLayout(false);
toolStripContainer1.TopToolStripPanel.PerformLayout();
toolStripContainer1.ResumeLayout(false);
toolStripContainer1.PerformLayout();
statusStrip1.ResumeLayout(false);
statusStrip1.PerformLayout();
splitContainer1.Panel1.ResumeLayout(false);
splitContainer1.Panel2.ResumeLayout(false);
splitContainer1.ResumeLayout(false);
toolStrip1.ResumeLayout(false);
toolStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
示例11: InitializeComponent
//.........这里部分代码省略.........
this.listErrors.Location = new System.Drawing.Point(0, 0);
this.listErrors.MultiSelect = false;
this.listErrors.Name = "listErrors";
this.listErrors.ShowGroups = false;
this.listErrors.ShowItemToolTips = true;
this.listErrors.Size = new System.Drawing.Size(656, 110);
this.listErrors.TabIndex = 0;
this.listErrors.UseCompatibleStateImageBehavior = false;
this.listErrors.View = System.Windows.Forms.View.Details;
this.listErrors.SelectedIndexChanged += new System.EventHandler(this.listErrors_SelectedIndexChanged);
this.listErrors.Resize += new System.EventHandler(this.listErrors_Resize);
//
// columnHeader1
//
this.columnHeader1.Width = 150;
//
// columnHeader2
//
this.columnHeader2.Width = 150;
//
// columnHeader
//
columnHeader.Width = 500;
//
// tabControl
//
this.tabControl.Controls.Add(this.tabPageEvaluate);
this.tabControl.Controls.Add(this.tabPageInstall);
this.tabControl.Dock = System.Windows.Forms.DockStyle.Fill;
this.tabControl.Location = new System.Drawing.Point(0, 24);
this.tabControl.Name = "tabControl";
this.tabControl.SelectedIndex = 0;
this.tabControl.Size = new System.Drawing.Size(670, 346);
this.tabControl.TabIndex = 2;
this.tabControl.Selected += new System.Windows.Forms.TabControlEventHandler(this.tabControl_Selected);
//
// tabPageEvaluate
//
this.tabPageEvaluate.Controls.Add(splitContainer1);
this.tabPageEvaluate.Location = new System.Drawing.Point(4, 22);
this.tabPageEvaluate.Name = "tabPageEvaluate";
this.tabPageEvaluate.Padding = new System.Windows.Forms.Padding(3);
this.tabPageEvaluate.Size = new System.Drawing.Size(662, 320);
this.tabPageEvaluate.TabIndex = 0;
this.tabPageEvaluate.Text = "Evaluate";
this.tabPageEvaluate.UseVisualStyleBackColor = true;
//
// tabPageInstall
//
this.tabPageInstall.Controls.Add(splitContainer2);
this.tabPageInstall.Location = new System.Drawing.Point(4, 22);
this.tabPageInstall.Name = "tabPageInstall";
this.tabPageInstall.Padding = new System.Windows.Forms.Padding(3);
this.tabPageInstall.Size = new System.Drawing.Size(662, 320);
this.tabPageInstall.TabIndex = 1;
this.tabPageInstall.Text = "Install";
this.tabPageInstall.UseVisualStyleBackColor = true;
//
// openFileDialog
//
this.openFileDialog.DefaultExt = "ist";
this.openFileDialog.Filter = "IronSmalltalk files|*.ist|Smalltalk files|*.st|All files|*.*";
//
// saveFileDialog
//
this.saveFileDialog.DefaultExt = "ist";
this.saveFileDialog.Filter = "IronSmalltalk files|*.ist|Smalltalk files|*.st|All files|*.*";
//
// WorkspaceForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(670, 370);
this.Controls.Add(this.tabControl);
this.Controls.Add(menuStrip);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "WorkspaceForm";
this.Text = "Workspace";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.WorkspaceForm_FormClosing);
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.WorkspaceForm_FormClosed);
menuStrip.ResumeLayout(false);
menuStrip.PerformLayout();
splitContainer1.Panel1.ResumeLayout(false);
splitContainer1.Panel1.PerformLayout();
splitContainer1.Panel2.ResumeLayout(false);
splitContainer1.Panel2.PerformLayout();
((System.ComponentModel.ISupportInitialize)(splitContainer1)).EndInit();
splitContainer1.ResumeLayout(false);
splitContainer2.Panel1.ResumeLayout(false);
splitContainer2.Panel1.PerformLayout();
splitContainer2.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(splitContainer2)).EndInit();
splitContainer2.ResumeLayout(false);
this.tabControl.ResumeLayout(false);
this.tabPageEvaluate.ResumeLayout(false);
this.tabPageInstall.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
示例12: InitializeComponent
//.........这里部分代码省略.........
this._deleteButton.Image = global::MovieLab.Properties.Resources.Delete;
this._deleteButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this._deleteButton.Name = "_deleteButton";
this._deleteButton.Size = new System.Drawing.Size(76, 36);
this._deleteButton.Text = "Delete";
this._deleteButton.Click += new System.EventHandler(this._deleteButton_Click);
//
// splitContainer1
//
this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
this.splitContainer1.Location = new System.Drawing.Point(0, 0);
this.splitContainer1.Name = "splitContainer1";
//
// splitContainer1.Panel1
//
this.splitContainer1.Panel1.Controls.Add(this.groupBox2);
this.splitContainer1.Panel1MinSize = 200;
//
// splitContainer1.Panel2
//
this.splitContainer1.Panel2.Controls.Add(this.groupBox1);
this.splitContainer1.Panel2MinSize = 150;
this.splitContainer1.Size = new System.Drawing.Size(609, 385);
this.splitContainer1.SplitterDistance = 264;
this.splitContainer1.SplitterWidth = 10;
this.splitContainer1.TabIndex = 13;
//
// toolStripContainer3
//
this.toolStripContainer3.BottomToolStripPanelVisible = false;
//
// toolStripContainer3.ContentPanel
//
this.toolStripContainer3.ContentPanel.Controls.Add(this.splitContainer1);
this.toolStripContainer3.ContentPanel.Size = new System.Drawing.Size(609, 385);
this.toolStripContainer3.Dock = System.Windows.Forms.DockStyle.Fill;
this.toolStripContainer3.LeftToolStripPanelVisible = false;
this.toolStripContainer3.Location = new System.Drawing.Point(10, 10);
this.toolStripContainer3.Name = "toolStripContainer3";
this.toolStripContainer3.RightToolStripPanelVisible = false;
this.toolStripContainer3.Size = new System.Drawing.Size(609, 410);
this.toolStripContainer3.TabIndex = 15;
this.toolStripContainer3.Text = "toolStripContainer3";
//
// toolStripContainer3.TopToolStripPanel
//
this.toolStripContainer3.TopToolStripPanel.Controls.Add(menuStrip1);
//
// _saveFileDialog
//
this._saveFileDialog.Filter = "Xml files (*.xml)|*.xml";
//
// _openFileDialog
//
this._openFileDialog.FileName = "openFileDialog1";
//
// MovieManagerDialog
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(629, 430);
this.Controls.Add(this.toolStripContainer3);
this.MainMenuStrip = menuStrip1;
this.MinimumSize = new System.Drawing.Size(500, 276);
this.Name = "MovieManagerDialog";
this.Padding = new System.Windows.Forms.Padding(10);
this.Text = "My Movies";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MovieManagerDialog_FormClosing);
menuStrip1.ResumeLayout(false);
menuStrip1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this._ratingTextBox)).EndInit();
this.groupBox1.ResumeLayout(false);
this.toolStripContainer1.ContentPanel.ResumeLayout(false);
this.toolStripContainer1.ContentPanel.PerformLayout();
this.toolStripContainer1.TopToolStripPanel.ResumeLayout(false);
this.toolStripContainer1.TopToolStripPanel.PerformLayout();
this.toolStripContainer1.ResumeLayout(false);
this.toolStripContainer1.PerformLayout();
this.toolStrip2.ResumeLayout(false);
this.toolStrip2.PerformLayout();
this.groupBox2.ResumeLayout(false);
this.toolStripContainer2.ContentPanel.ResumeLayout(false);
this.toolStripContainer2.TopToolStripPanel.ResumeLayout(false);
this.toolStripContainer2.TopToolStripPanel.PerformLayout();
this.toolStripContainer2.ResumeLayout(false);
this.toolStripContainer2.PerformLayout();
this.toolStrip1.ResumeLayout(false);
this.toolStrip1.PerformLayout();
this.splitContainer1.Panel1.ResumeLayout(false);
this.splitContainer1.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
this.splitContainer1.ResumeLayout(false);
this.toolStripContainer3.ContentPanel.ResumeLayout(false);
this.toolStripContainer3.TopToolStripPanel.ResumeLayout(false);
this.toolStripContainer3.TopToolStripPanel.PerformLayout();
this.toolStripContainer3.ResumeLayout(false);
this.toolStripContainer3.PerformLayout();
this.ResumeLayout(false);
}
示例13: InitializeComponent
//.........这里部分代码省略.........
this.redToolStripMenuItem.Click += new System.EventHandler(this.redToolStripMenuItem_Click);
//
// yellowToolStripMenuItem
//
this.yellowToolStripMenuItem.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
this.yellowToolStripMenuItem.ForeColor = System.Drawing.SystemColors.Control;
this.yellowToolStripMenuItem.Name = "yellowToolStripMenuItem";
this.yellowToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.yellowToolStripMenuItem.Text = "Yellow";
this.yellowToolStripMenuItem.Click += new System.EventHandler(this.yellowToolStripMenuItem_Click);
//
// greenToolStripMenuItem
//
this.greenToolStripMenuItem.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
this.greenToolStripMenuItem.ForeColor = System.Drawing.SystemColors.Control;
this.greenToolStripMenuItem.Name = "greenToolStripMenuItem";
this.greenToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.greenToolStripMenuItem.Text = "Green";
this.greenToolStripMenuItem.Click += new System.EventHandler(this.greenToolStripMenuItem_Click);
//
// redToolStripMenuItem1
//
this.redToolStripMenuItem1.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
this.redToolStripMenuItem1.ForeColor = System.Drawing.SystemColors.Control;
this.redToolStripMenuItem1.Name = "redToolStripMenuItem1";
this.redToolStripMenuItem1.Size = new System.Drawing.Size(152, 22);
this.redToolStripMenuItem1.Text = "Red";
//
// yellowToolStripMenuItem1
//
this.yellowToolStripMenuItem1.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
this.yellowToolStripMenuItem1.ForeColor = System.Drawing.SystemColors.Control;
this.yellowToolStripMenuItem1.Name = "yellowToolStripMenuItem1";
this.yellowToolStripMenuItem1.Size = new System.Drawing.Size(152, 22);
this.yellowToolStripMenuItem1.Text = "Yellow";
//
// greenToolStripMenuItem1
//
this.greenToolStripMenuItem1.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
this.greenToolStripMenuItem1.ForeColor = System.Drawing.SystemColors.Control;
this.greenToolStripMenuItem1.Name = "greenToolStripMenuItem1";
this.greenToolStripMenuItem1.Size = new System.Drawing.Size(152, 22);
this.greenToolStripMenuItem1.Text = "Green";
//
// redToolStripMenuItem2
//
this.redToolStripMenuItem2.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
this.redToolStripMenuItem2.ForeColor = System.Drawing.SystemColors.Control;
this.redToolStripMenuItem2.Name = "redToolStripMenuItem2";
this.redToolStripMenuItem2.Size = new System.Drawing.Size(152, 22);
this.redToolStripMenuItem2.Text = "Red";
//
// yellowToolStripMenuItem2
//
this.yellowToolStripMenuItem2.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
this.yellowToolStripMenuItem2.ForeColor = System.Drawing.SystemColors.Control;
this.yellowToolStripMenuItem2.Name = "yellowToolStripMenuItem2";
this.yellowToolStripMenuItem2.Size = new System.Drawing.Size(152, 22);
this.yellowToolStripMenuItem2.Text = "Yellow";
//
// greenToolStripMenuItem2
//
this.greenToolStripMenuItem2.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
this.greenToolStripMenuItem2.ForeColor = System.Drawing.SystemColors.Control;
this.greenToolStripMenuItem2.Name = "greenToolStripMenuItem2";
this.greenToolStripMenuItem2.Size = new System.Drawing.Size(152, 22);
this.greenToolStripMenuItem2.Text = "Green";
//
// restartToolStripMenuItem
//
this.restartToolStripMenuItem.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
this.restartToolStripMenuItem.ForeColor = System.Drawing.SystemColors.Control;
this.restartToolStripMenuItem.Name = "restartToolStripMenuItem";
this.restartToolStripMenuItem.Size = new System.Drawing.Size(158, 22);
this.restartToolStripMenuItem.Text = "Restart";
this.restartToolStripMenuItem.Click += new System.EventHandler(this.restartToolStripMenuItem_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
this.ClientSize = new System.Drawing.Size(800, 600);
this.Controls.Add(menuStrip1);
this.DoubleBuffered = true;
this.Font = new System.Drawing.Font("OCR-A", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.MainMenuStrip = menuStrip1;
this.Name = "Form1";
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show;
this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
this.Text = "Pong";
this.Paint += new System.Windows.Forms.PaintEventHandler(this.Form1_Paint);
this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.Form1_MouseMove);
menuStrip1.ResumeLayout(false);
menuStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
示例14: InitializeComponent
//.........这里部分代码省略.........
this.webBrowser1.TabIndex = 9;
this.webBrowser1.Navigating += new System.Windows.Forms.WebBrowserNavigatingEventHandler(this.webBrowser1_Navigating);
this.webBrowser1.DocumentTitleChanged += new System.EventHandler(this.webBrowser1_DocumentTitleChanged);
this.webBrowser1.DocumentCompleted += new System.Windows.Forms.WebBrowserDocumentCompletedEventHandler(this.webBrowser1_DocumentCompleted);
this.webBrowser1.StatusTextChanged += new System.EventHandler(this.webBrowser1_StatusTextChanged);
//
// address_textBox1
//
this.address_textBox1.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
this.address_textBox1.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.AllUrl;
this.address_textBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.address_textBox1.Dock = System.Windows.Forms.DockStyle.Fill;
this.address_textBox1.Font = new System.Drawing.Font("MS UI Gothic", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
this.address_textBox1.Location = new System.Drawing.Point(0, 0);
this.address_textBox1.Margin = new System.Windows.Forms.Padding(0);
this.address_textBox1.Name = "address_textBox1";
this.address_textBox1.Size = new System.Drawing.Size(753, 19);
this.address_textBox1.TabIndex = 10;
this.address_textBox1.Text = "http://www.nicovideo.jp/";
this.address_textBox1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.address_textBox1_KeyDown);
//
// fontDialog1
//
this.fontDialog1.Font = new System.Drawing.Font("MS UI Gothic", 1F);
this.fontDialog1.ShowEffects = false;
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.AutoSize = true;
this.tableLayoutPanel1.ColumnCount = 2;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel1.Controls.Add(this.address_textBox1, 0, 0);
this.tableLayoutPanel1.Controls.Add(Go, 1, 0);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Top;
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 27);
this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(0);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 1;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(772, 19);
this.tableLayoutPanel1.TabIndex = 11;
//
// HTML_Icon
//
this.HTML_Icon.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("HTML_Icon.ImageStream")));
this.HTML_Icon.TransparentColor = System.Drawing.Color.Transparent;
this.HTML_Icon.Images.SetKeyName(0, "canvas.png");
//
// treeViewEx
//
this.treeViewEx.ContextMenuStrip = this.contextMenuStrip1;
this.treeViewEx.Dock = System.Windows.Forms.DockStyle.Left;
this.treeViewEx.ImageIndex = 0;
this.treeViewEx.ImageList = this.HTML_Icon;
this.treeViewEx.Location = new System.Drawing.Point(0, 49);
this.treeViewEx.Name = "treeViewEx";
this.treeViewEx.SelectedImageIndex = 0;
this.treeViewEx.Size = new System.Drawing.Size(201, 345);
this.treeViewEx.TabIndex = 7;
this.treeViewEx.webBrowser = this.webBrowser1;
this.treeViewEx.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView2_AfterSelect);
//
// StatusLabel1
//
this.StatusLabel1.Name = "StatusLabel1";
this.StatusLabel1.Size = new System.Drawing.Size(20, 18);
this.StatusLabel1.Text = "...";
//
// BrowserForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(772, 666);
this.Controls.Add(this.webBrowser1);
this.Controls.Add(vertical_splitter);
this.Controls.Add(this.treeViewEx);
this.Controls.Add(upper_splitter);
this.Controls.Add(this.tableLayoutPanel1);
this.Controls.Add(menuStrip1);
this.Controls.Add(bottom_splitter1);
this.Controls.Add(this.propertyGrid1);
this.Controls.Add(this.statusStrip1);
this.MainMenuStrip = menuStrip1;
this.Name = "BrowserForm";
this.Text = "MyBrowser";
///////////////////////this.Deactivate += new System.EventHandler(this.BrowserForm_Deactivate);
//////////////////////////////////// this.Activated += new System.EventHandler(this.BrowserForm_Activated);
contextMenuStrip2.ResumeLayout(false);
menuStrip1.ResumeLayout(false);
menuStrip1.PerformLayout();
this.contextMenuStrip1.ResumeLayout(false);
this.statusStrip1.ResumeLayout(false);
this.statusStrip1.PerformLayout();
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
示例15: InitializeComponent
//.........这里部分代码省略.........
toolStripMenuItem3,
this.mnuExit});
this.mnuFile.Name = "mnuFile";
this.mnuFile.Size = new System.Drawing.Size(37, 20);
this.mnuFile.Text = "&File";
//
// mnuOpen
//
this.mnuOpen.Name = "mnuOpen";
this.mnuOpen.Size = new System.Drawing.Size(142, 22);
this.mnuOpen.Text = "&Open...";
this.mnuOpen.Click += new System.EventHandler(this.mnuOpen_Click);
//
// mnuSave
//
this.mnuSave.Name = "mnuSave";
this.mnuSave.Size = new System.Drawing.Size(142, 22);
this.mnuSave.Text = "&Save...";
this.mnuSave.Click += new System.EventHandler(this.mnuSave_Click);
//
// toolStripMenuItem1
//
toolStripMenuItem1.Name = "toolStripMenuItem1";
toolStripMenuItem1.Size = new System.Drawing.Size(139, 6);
//
// mnuExportData
//
this.mnuExportData.Name = "mnuExportData";
this.mnuExportData.Size = new System.Drawing.Size(142, 22);
this.mnuExportData.Text = "Export data...";
this.mnuExportData.Click += new System.EventHandler(this.mnuExportData_Click);
//
// toolStripMenuItem3
//
toolStripMenuItem3.Name = "toolStripMenuItem3";
toolStripMenuItem3.Size = new System.Drawing.Size(139, 6);
//
// mnuExit
//
this.mnuExit.Name = "mnuExit";
this.mnuExit.Size = new System.Drawing.Size(142, 22);
this.mnuExit.Text = "&Exit";
this.mnuExit.Click += new System.EventHandler(this.mnuExit_Click);
//
// statusStrip1
//
statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.lblStatus,
this.prbStatus});
statusStrip1.Location = new System.Drawing.Point(0, 476);
statusStrip1.Name = "statusStrip1";
statusStrip1.Size = new System.Drawing.Size(469, 22);
statusStrip1.TabIndex = 3;
statusStrip1.Text = "statusStrip1";
//
// lblStatus
//
this.lblStatus.Name = "lblStatus";
this.lblStatus.Size = new System.Drawing.Size(52, 17);
this.lblStatus.Text = "lblStatus";
//
// prbStatus
//
this.prbStatus.Name = "prbStatus";
this.prbStatus.Size = new System.Drawing.Size(100, 16);
//
// picSectionImage
//
this.picSectionImage.BackColor = System.Drawing.Color.Black;
this.picSectionImage.Dock = System.Windows.Forms.DockStyle.Fill;
this.picSectionImage.Location = new System.Drawing.Point(0, 24);
this.picSectionImage.Name = "picSectionImage";
this.picSectionImage.Size = new System.Drawing.Size(469, 474);
this.picSectionImage.TabIndex = 1;
this.picSectionImage.TabStop = false;
this.picSectionImage.Paint += new System.Windows.Forms.PaintEventHandler(this.picSectionImage_Paint);
this.picSectionImage.MouseDown += new System.Windows.Forms.MouseEventHandler(this.picSectionImage_MouseDown);
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(669, 498);
this.Controls.Add(statusStrip1);
this.Controls.Add(this.picSectionImage);
this.Controls.Add(groupBox1);
this.Controls.Add(menuStrip1);
this.Name = "MainForm";
this.Text = "Sonic 3 Special Stage - Section Decoder";
groupBox1.ResumeLayout(false);
groupBox1.PerformLayout();
menuStrip1.ResumeLayout(false);
menuStrip1.PerformLayout();
statusStrip1.ResumeLayout(false);
statusStrip1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.picSectionImage)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}