本文整理汇总了C#中System.Windows.Forms.SplitContainer.ResumeLayout方法的典型用法代码示例。如果您正苦于以下问题:C# System.Windows.Forms.SplitContainer.ResumeLayout方法的具体用法?C# System.Windows.Forms.SplitContainer.ResumeLayout怎么用?C# System.Windows.Forms.SplitContainer.ResumeLayout使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Windows.Forms.SplitContainer
的用法示例。
在下文中一共展示了System.Windows.Forms.SplitContainer.ResumeLayout方法的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() {
System.Windows.Forms.SplitContainer splitContainer1;
this._commandList = new System.Windows.Forms.ListBox();
this._propertyGrid = new System.Windows.Forms.PropertyGrid();
splitContainer1 = new System.Windows.Forms.SplitContainer();
splitContainer1.Panel1.SuspendLayout();
splitContainer1.Panel2.SuspendLayout();
splitContainer1.SuspendLayout();
this.SuspendLayout();
//
// splitContainer1
//
splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
splitContainer1.Location = new System.Drawing.Point(0, 0);
splitContainer1.Name = "splitContainer1";
splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
//
// splitContainer1.Panel1
//
splitContainer1.Panel1.Controls.Add(this._commandList);
//
// splitContainer1.Panel2
//
splitContainer1.Panel2.Controls.Add(this._propertyGrid);
splitContainer1.Size = new System.Drawing.Size(288, 460);
splitContainer1.SplitterDistance = 269;
splitContainer1.TabIndex = 1;
//
// _commandList
//
this._commandList.Dock = System.Windows.Forms.DockStyle.Fill;
this._commandList.FormattingEnabled = true;
this._commandList.Location = new System.Drawing.Point(0, 0);
this._commandList.Name = "_commandList";
this._commandList.Size = new System.Drawing.Size(288, 264);
this._commandList.TabIndex = 0;
this._commandList.SelectedIndexChanged += new System.EventHandler(this.commandList_SelectedIndexChanged);
//
// _propertyGrid
//
this._propertyGrid.Dock = System.Windows.Forms.DockStyle.Fill;
this._propertyGrid.Location = new System.Drawing.Point(0, 0);
this._propertyGrid.Name = "_propertyGrid";
this._propertyGrid.Size = new System.Drawing.Size(288, 187);
this._propertyGrid.TabIndex = 2;
//
// CommandHistoryComponentPanel
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(splitContainer1);
this.Name = "CommandHistoryComponentPanel";
this.Size = new System.Drawing.Size(288, 460);
splitContainer1.Panel1.ResumeLayout(false);
splitContainer1.Panel2.ResumeLayout(false);
splitContainer1.ResumeLayout(false);
this.ResumeLayout(false);
}
示例2: InitializeComponent
//.........这里部分代码省略.........
this.tabPageMethodSource.Controls.Add(this.sourceEditControl);
this.tabPageMethodSource.ImageKey = "source";
this.tabPageMethodSource.Location = new System.Drawing.Point(4, 23);
this.tabPageMethodSource.Name = "tabPageMethodSource";
this.tabPageMethodSource.Padding = new System.Windows.Forms.Padding(3);
this.tabPageMethodSource.Size = new System.Drawing.Size(355, 327);
this.tabPageMethodSource.TabIndex = 1;
this.tabPageMethodSource.Text = "Source Code";
this.tabPageMethodSource.UseVisualStyleBackColor = true;
//
// sourceEditControl
//
this.sourceEditControl.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.sourceEditControl.Location = new System.Drawing.Point(6, 6);
this.sourceEditControl.Name = "sourceEditControl";
this.sourceEditControl.Size = new System.Drawing.Size(343, 315);
this.sourceEditControl.Source = "";
this.sourceEditControl.TabIndex = 0;
//
// imageList
//
this.imageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream")));
this.imageList.TransparentColor = System.Drawing.Color.Transparent;
this.imageList.Images.SetKeyName(0, "method");
this.imageList.Images.SetKeyName(1, "field");
this.imageList.Images.SetKeyName(2, "structure");
this.imageList.Images.SetKeyName(3, "handshake");
this.imageList.Images.SetKeyName(4, "enum");
this.imageList.Images.SetKeyName(5, "class");
this.imageList.Images.SetKeyName(6, "source");
this.imageList.Images.SetKeyName(7, "document");
this.imageList.Images.SetKeyName(8, "hierarchy");
this.imageList.Images.SetKeyName(9, "parameter");
//
// contextMenuParameterAliasing
//
this.contextMenuParameterAliasing.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.unspecifiedToolStripMenuItem,
this.capturedToolStripMenuItem,
this.uncapturedToolStripMenuItem});
this.contextMenuParameterAliasing.Name = "contextMenuParameterAliasing";
this.contextMenuParameterAliasing.Size = new System.Drawing.Size(137, 70);
//
// unspecifiedToolStripMenuItem
//
this.unspecifiedToolStripMenuItem.Name = "unspecifiedToolStripMenuItem";
this.unspecifiedToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
this.unspecifiedToolStripMenuItem.Text = "Unspecified";
this.unspecifiedToolStripMenuItem.Click += new System.EventHandler(this.unspecifiedToolStripMenuItem_Click);
//
// capturedToolStripMenuItem
//
this.capturedToolStripMenuItem.Name = "capturedToolStripMenuItem";
this.capturedToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
this.capturedToolStripMenuItem.Text = "Captured";
this.capturedToolStripMenuItem.Click += new System.EventHandler(this.capturedToolStripMenuItem_Click);
//
// uncapturedToolStripMenuItem
//
this.uncapturedToolStripMenuItem.Name = "uncapturedToolStripMenuItem";
this.uncapturedToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
this.uncapturedToolStripMenuItem.Text = "Uncaptured";
this.uncapturedToolStripMenuItem.Click += new System.EventHandler(this.uncapturedToolStripMenuItem_Click);
//
// ProtocolMessageControl
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(tabMethod);
this.DoubleBuffered = true;
this.Name = "ProtocolMessageControl";
this.Size = new System.Drawing.Size(363, 354);
tabMethod.ResumeLayout(false);
this.tabPageMethodDefinition.ResumeLayout(false);
this.tabPageMethodDefinition.PerformLayout();
this.tabPageMethodDescription.ResumeLayout(false);
this.tabPageMethodDescription.PerformLayout();
this.panelRefinementDescription.ResumeLayout(false);
tableLayoutPanel1.ResumeLayout(false);
this.panelRefinement.ResumeLayout(false);
this.tabPageMethodParameters.ResumeLayout(false);
splitContainer1.Panel1.ResumeLayout(false);
splitContainer1.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(splitContainer1)).EndInit();
splitContainer1.ResumeLayout(false);
groupBox1.ResumeLayout(false);
tableLayoutPanel2.ResumeLayout(false);
panel1.ResumeLayout(false);
groupBox2.ResumeLayout(false);
this.tableLayoutPanel3.ResumeLayout(false);
panel2.ResumeLayout(false);
panel3.ResumeLayout(false);
panel3.PerformLayout();
this.tabPageMethodSource.ResumeLayout(false);
this.contextMenuParameterAliasing.ResumeLayout(false);
this.ResumeLayout(false);
}
示例3: InitializeComponent
//.........这里部分代码省略.........
toolStripMenuItem1.Name = "toolStripMenuItem1";
toolStripMenuItem1.Size = new System.Drawing.Size(142, 6);
//
// saveToolStripMenuItem
//
this.saveToolStripMenuItem.Enabled = false;
this.saveToolStripMenuItem.Name = "saveToolStripMenuItem";
this.saveToolStripMenuItem.Size = new System.Drawing.Size(145, 22);
this.saveToolStripMenuItem.Text = "&Save";
this.saveToolStripMenuItem.Click += new System.EventHandler(this.saveToolStripMenuItem_Click);
//
// saveAsToolStripMenuItem
//
this.saveAsToolStripMenuItem.Enabled = false;
this.saveAsToolStripMenuItem.Name = "saveAsToolStripMenuItem";
this.saveAsToolStripMenuItem.Size = new System.Drawing.Size(145, 22);
this.saveAsToolStripMenuItem.Text = "Save &As...";
//
// toolStripMenuItem2
//
toolStripMenuItem2.Name = "toolStripMenuItem2";
toolStripMenuItem2.Size = new System.Drawing.Size(142, 6);
//
// propertiesToolStripMenuItem
//
this.propertiesToolStripMenuItem.Enabled = false;
this.propertiesToolStripMenuItem.Name = "propertiesToolStripMenuItem";
this.propertiesToolStripMenuItem.Size = new System.Drawing.Size(145, 22);
this.propertiesToolStripMenuItem.Text = "&Properties...";
this.propertiesToolStripMenuItem.Click += new System.EventHandler(this.propertiesToolStripMenuItem_Click);
//
// toolStripMenuItem3
//
toolStripMenuItem3.Name = "toolStripMenuItem3";
toolStripMenuItem3.Size = new System.Drawing.Size(142, 6);
//
// exitToolStripMenuItem
//
exitToolStripMenuItem.Name = "exitToolStripMenuItem";
exitToolStripMenuItem.Size = new System.Drawing.Size(145, 22);
exitToolStripMenuItem.Text = "E&xit";
exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
//
// openFileDialog
//
this.openFileDialog.Filter = "Texture Atlas files (*.xml)|*.xml";
//
// addTextureDialog
//
this.addTextureDialog.Filter = "Texture file (*.png)|*.png";
this.addTextureDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.addTextureDialog_FileOk);
//
// saveFileDialog
//
this.saveFileDialog.Filter = "Texture Atlas files (*.xml)|*.xml";
//
// editToolStripMenuItem
//
editToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.packToolStripMenuItem});
editToolStripMenuItem.Name = "editToolStripMenuItem";
editToolStripMenuItem.Size = new System.Drawing.Size(42, 21);
editToolStripMenuItem.Text = "&Edit";
//
// packToolStripMenuItem
//
this.packToolStripMenuItem.Enabled = false;
this.packToolStripMenuItem.Name = "packToolStripMenuItem";
this.packToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.packToolStripMenuItem.Text = "&Pack";
this.packToolStripMenuItem.Click += new System.EventHandler(this.packToolStripMenuItem_Click);
//
// Main
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(608, 398);
this.Controls.Add(splitContainer1);
this.Controls.Add(mainMenuStrip);
this.MainMenuStrip = mainMenuStrip;
this.Name = "Main";
this.Text = "Texture Atlas Editor";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Main_FormClosing);
splitContainer1.Panel1.ResumeLayout(false);
splitContainer1.Panel1.PerformLayout();
splitContainer1.Panel2.ResumeLayout(false);
splitContainer1.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
splitContainer2.Panel1.ResumeLayout(false);
splitContainer2.Panel1.PerformLayout();
splitContainer2.Panel2.ResumeLayout(false);
splitContainer2.ResumeLayout(false);
this.toolStripSubTextures.ResumeLayout(false);
this.toolStripSubTextures.PerformLayout();
mainMenuStrip.ResumeLayout(false);
mainMenuStrip.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
示例4: InitializeComponent
//.........这里部分代码省略.........
this._dataGrid.Location = new System.Drawing.Point(0, 0);
this._dataGrid.Name = "_dataGrid";
this._dataGrid.RowHeadersWidth = 42;
this._dataGrid.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
this._dataGrid.RowTemplate.Height = 23;
this._dataGrid.Size = new System.Drawing.Size(436, 383);
this._dataGrid.TabIndex = 2;
this._dataGrid.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this._dataGrid_CellValueChanged);
this._dataGrid.MouseDown += new System.Windows.Forms.MouseEventHandler(this._dataGrid_MouseDown);
this._dataGrid.UserDeletingRow += new System.Windows.Forms.DataGridViewRowCancelEventHandler(this._dataGrid_UserDeletingRow);
this._dataGrid.MouseMove += new System.Windows.Forms.MouseEventHandler(this._dataGrid_MouseMove);
this._dataGrid.CellValidated += new System.Windows.Forms.DataGridViewCellEventHandler(this._dataGrid_CellValidated);
this._dataGrid.UserDeletedRow += new System.Windows.Forms.DataGridViewRowEventHandler(this._dataGrid_UserDeletedRow);
this._dataGrid.DragOver += new System.Windows.Forms.DragEventHandler(this._dataGrid_DragOver);
this._dataGrid.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this._dataGrid_CellValidated);
this._dataGrid.CellPainting += new System.Windows.Forms.DataGridViewCellPaintingEventHandler(this._dataGrid_CellPainting);
this._dataGrid.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this._dataGrid_CellClick);
this._dataGrid.CellEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this._dataGrid_CellEnter);
this._dataGrid.RowHeaderMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this._dataGrid_RowHeaderMouseClick);
this._dataGrid.SelectionChanged += new System.EventHandler(this._dataGrid_SelectionChanged);
this._dataGrid.DragDrop += new System.Windows.Forms.DragEventHandler(this._dataGrid_DragDrop);
//
// name
//
this.name.Frozen = true;
this.name.HeaderText = "Column Name";
this.name.Name = "name";
this.name.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
//
// type
//
this.type.HeaderText = "Data Type";
this.type.Name = "type";
//
// isnull
//
this.isnull.FalseValue = false;
this.isnull.HeaderText = "Allow Nulls";
this.isnull.IndeterminateValue = false;
this.isnull.Name = "isnull";
this.isnull.TrueValue = true;
//
// _pg
//
this._pg.Location = new System.Drawing.Point(3, 171);
this._pg.Name = "_pg";
this._pg.PropertySort = System.Windows.Forms.PropertySort.NoSort;
this._pg.Size = new System.Drawing.Size(130, 130);
this._pg.TabIndex = 1;
this._pg.ToolbarVisible = false;
this._pg.Visible = false;
//
// _sqlText
//
this._sqlText.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this._sqlText.Location = new System.Drawing.Point(3, 3);
this._sqlText.Name = "_sqlText";
this._sqlText.ReadOnly = true;
this._sqlText.Size = new System.Drawing.Size(165, 162);
this._sqlText.TabIndex = 0;
this._sqlText.Text = "";
this._sqlText.Visible = false;
//
// _propertyGrid
//
this._propertyGrid.Dock = System.Windows.Forms.DockStyle.Fill;
this._propertyGrid.Location = new System.Drawing.Point(0, 0);
this._propertyGrid.Name = "_propertyGrid";
this._propertyGrid.Size = new System.Drawing.Size(436, 244);
this._propertyGrid.TabIndex = 0;
//
// autoCompleteColumn1
//
this.autoCompleteColumn1.HeaderText = "Data Type";
this.autoCompleteColumn1.Name = "autoCompleteColumn1";
this.autoCompleteColumn1.Resizable = System.Windows.Forms.DataGridViewTriState.True;
this.autoCompleteColumn1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
//
// _imageList
//
this._imageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("_imageList.ImageStream")));
this._imageList.TransparentColor = System.Drawing.Color.Magenta;
this._imageList.Images.SetKeyName(0, "PrimaryKey.bmp");
//
// TableDesignerDoc
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.Window;
this.Controls.Add(_splitter);
this.Font = new System.Drawing.Font("MS Shell Dlg 2", 8.25F);
this.Name = "TableDesignerDoc";
this.Size = new System.Drawing.Size(436, 631);
_splitter.Panel1.ResumeLayout(false);
_splitter.Panel2.ResumeLayout(false);
_splitter.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this._dataGrid)).EndInit();
this.ResumeLayout(false);
}
示例5: InitializeComponent
//.........这里部分代码省略.........
this.importLocalResourceButton.Text = "${res:ICSharpCode.SharpDevelop.FormDesigner.Gui.ImageResourceEditor.ImportLocalRe" +
"sourceButton}";
this.importLocalResourceButton.UseVisualStyleBackColor = true;
this.importLocalResourceButton.Click += new System.EventHandler(this.ImportLocalResourceButtonClick);
//
// noResourceRadioButton
//
this.noResourceRadioButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.noResourceRadioButton.Location = new System.Drawing.Point(6, 19);
this.noResourceRadioButton.Name = "noResourceRadioButton";
this.noResourceRadioButton.Size = new System.Drawing.Size(268, 24);
this.noResourceRadioButton.TabIndex = 0;
this.noResourceRadioButton.TabStop = true;
this.noResourceRadioButton.Text = "${res:ICSharpCode.SharpDevelop.FormDesigner.Gui.ImageResourceEditor.NoResourceBut" +
"ton}";
this.noResourceRadioButton.UseVisualStyleBackColor = true;
this.noResourceRadioButton.CheckedChanged += new System.EventHandler(this.NoResourceRadioButtonCheckedChanged);
//
// localResourceRadioButton
//
this.localResourceRadioButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.localResourceRadioButton.Location = new System.Drawing.Point(6, 49);
this.localResourceRadioButton.Name = "localResourceRadioButton";
this.localResourceRadioButton.Size = new System.Drawing.Size(268, 24);
this.localResourceRadioButton.TabIndex = 1;
this.localResourceRadioButton.TabStop = true;
this.localResourceRadioButton.Text = "${res:ICSharpCode.SharpDevelop.FormDesigner.Gui.ImageResourceEditor.LocalResource" +
"Button}";
this.localResourceRadioButton.UseVisualStyleBackColor = true;
this.localResourceRadioButton.CheckedChanged += new System.EventHandler(this.LocalResourceRadioButtonCheckedChanged);
//
// previewGroup
//
previewGroup.Controls.Add(this.previewPictureBox);
previewGroup.Dock = System.Windows.Forms.DockStyle.Fill;
previewGroup.Location = new System.Drawing.Point(0, 0);
previewGroup.Name = "previewGroup";
previewGroup.Size = new System.Drawing.Size(288, 299);
previewGroup.TabIndex = 0;
previewGroup.TabStop = false;
previewGroup.Text = "${res:ICSharpCode.SharpDevelop.FormDesigner.Gui.ImageResourceEditor.Preview}";
//
// previewPictureBox
//
this.previewPictureBox.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.previewPictureBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.previewPictureBox.Location = new System.Drawing.Point(6, 19);
this.previewPictureBox.Name = "previewPictureBox";
this.previewPictureBox.Size = new System.Drawing.Size(276, 274);
this.previewPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.previewPictureBox.TabIndex = 0;
this.previewPictureBox.TabStop = false;
//
// okButton
//
this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
this.okButton.Location = new System.Drawing.Point(428, 317);
this.okButton.Name = "okButton";
this.okButton.Size = new System.Drawing.Size(75, 23);
this.okButton.TabIndex = 0;
this.okButton.Text = "${res:Global.OKButtonText}";
this.okButton.UseVisualStyleBackColor = true;
//
// projectTreeScanningBackgroundWorker
//
this.projectTreeScanningBackgroundWorker.WorkerSupportsCancellation = true;
this.projectTreeScanningBackgroundWorker.DoWork += new System.ComponentModel.DoWorkEventHandler(this.ProjectTreeScanningBackgroundWorkerDoWork);
this.projectTreeScanningBackgroundWorker.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.ProjectTreeScanningBackgroundWorkerRunWorkerCompleted);
//
// ImageResourceEditorDialog
//
this.AcceptButton = this.okButton;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = cancelButton;
this.ClientSize = new System.Drawing.Size(596, 352);
this.Controls.Add(splitContainer);
this.Controls.Add(cancelButton);
this.Controls.Add(this.okButton);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "ImageResourceEditorDialog";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "${res:ICSharpCode.SharpDevelop.FormDesigner.Gui.ImageResourceEditor.Title}";
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.ImageResourceEditorDialogFormClosed);
splitContainer.Panel1.ResumeLayout(false);
splitContainer.Panel2.ResumeLayout(false);
splitContainer.ResumeLayout(false);
resourceSelectionGroup.ResumeLayout(false);
previewGroup.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.previewPictureBox)).EndInit();
this.ResumeLayout(false);
}
示例6: InitializeComponent
//.........这里部分代码省略.........
//
// toolStripStatusLabel
//
this.toolStripStatusLabel.Name = "toolStripStatusLabel";
this.toolStripStatusLabel.Size = new System.Drawing.Size(51, 17);
this.toolStripStatusLabel.Text = "Ready ...";
//
// mainMenuStrip
//
this.mainMenuStrip.Dock = System.Windows.Forms.DockStyle.None;
this.mainMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.fileToolStripMenuItem,
this.editToolStripMenuItem});
this.mainMenuStrip.Location = new System.Drawing.Point(0, 0);
this.mainMenuStrip.Name = "mainMenuStrip";
this.mainMenuStrip.Size = new System.Drawing.Size(744, 24);
this.mainMenuStrip.TabIndex = 0;
this.mainMenuStrip.Text = "menuStrip1";
//
// fileToolStripMenuItem
//
this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.awsCredentialsToolStripMenuItem,
this.refeshToolStripMenuItem,
this.exitToolStripMenuItem});
this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
this.fileToolStripMenuItem.Text = "&File";
//
// refeshToolStripMenuItem
//
this.refeshToolStripMenuItem.Name = "refeshToolStripMenuItem";
this.refeshToolStripMenuItem.Size = new System.Drawing.Size(161, 22);
this.refeshToolStripMenuItem.Text = "&Refesh";
this.refeshToolStripMenuItem.Click += new System.EventHandler(this.refeshToolStripMenuItem_Click);
//
// exitToolStripMenuItem
//
this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
this.exitToolStripMenuItem.Size = new System.Drawing.Size(161, 22);
this.exitToolStripMenuItem.Text = "&Exit";
this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
//
// editToolStripMenuItem
//
this.editToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.deleteToolStripMenuItem});
this.editToolStripMenuItem.Name = "editToolStripMenuItem";
this.editToolStripMenuItem.Size = new System.Drawing.Size(39, 20);
this.editToolStripMenuItem.Text = "&Edit";
this.editToolStripMenuItem.DropDownOpening += new System.EventHandler(this.editToolStripMenuItem_DropDownOpening);
//
// deleteToolStripMenuItem
//
this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
this.deleteToolStripMenuItem.Size = new System.Drawing.Size(107, 22);
this.deleteToolStripMenuItem.Text = "&Delete";
this.deleteToolStripMenuItem.Click += new System.EventHandler(this.deleteToolStripMenuItem_Click);
//
// loadMetricsBackgroundWorker
//
this.loadMetricsBackgroundWorker.WorkerReportsProgress = true;
this.loadMetricsBackgroundWorker.DoWork += new System.ComponentModel.DoWorkEventHandler(this.loadMetricsBackgroundWorker_DoWork);
this.loadMetricsBackgroundWorker.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.loadMetricsBackgroundWorker_ProgressChanged);
//
// awsCredentialsToolStripMenuItem
//
this.awsCredentialsToolStripMenuItem.Name = "awsCredentialsToolStripMenuItem";
this.awsCredentialsToolStripMenuItem.Size = new System.Drawing.Size(161, 22);
this.awsCredentialsToolStripMenuItem.Text = "AWS &Credentials";
this.awsCredentialsToolStripMenuItem.Click += new System.EventHandler(this.awsCredentialsToolStripMenuItem_Click);
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(744, 518);
this.Controls.Add(this.toolStripContainer1);
this.MainMenuStrip = this.mainMenuStrip;
this.Name = "MainForm";
this.Text = "NCloudWatch";
this.Load += new System.EventHandler(this.MainForm_Load);
splitContainer.Panel1.ResumeLayout(false);
splitContainer.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(splitContainer)).EndInit();
splitContainer.ResumeLayout(false);
this.toolStripContainer1.BottomToolStripPanel.ResumeLayout(false);
this.toolStripContainer1.BottomToolStripPanel.PerformLayout();
this.toolStripContainer1.ContentPanel.ResumeLayout(false);
this.toolStripContainer1.TopToolStripPanel.ResumeLayout(false);
this.toolStripContainer1.TopToolStripPanel.PerformLayout();
this.toolStripContainer1.ResumeLayout(false);
this.toolStripContainer1.PerformLayout();
this.statusStrip.ResumeLayout(false);
this.statusStrip.PerformLayout();
this.mainMenuStrip.ResumeLayout(false);
this.mainMenuStrip.PerformLayout();
this.ResumeLayout(false);
}
示例7: InitializeComponent
//.........这里部分代码省略.........
this.OpenFileDlg.Filter = "Cache files (.map)|*.map|All files|*.*";
this.OpenFileDlg.Title = "Open Cache file...";
//
// SaveFileDlg
//
this.SaveFileDlg.Title = "Save File";
//
// MenuTagInstance
//
this.MenuTagInstance.BackColor = System.Drawing.SystemColors.ControlDarkDark;
this.MenuTagInstance.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.MenuTagInstanceExtractAs,
this.MenuTagInstanceExtractFolder,
this.MenuTagInstanceExtractRsrc});
this.MenuTagInstance.Name = "MenuTagInstance";
this.MenuTagInstance.Size = new System.Drawing.Size(163, 70);
this.MenuTagInstance.Opening += new System.ComponentModel.CancelEventHandler(this.OnMenuTagInstanceOpening);
//
// MenuTagInstanceExtractAs
//
this.MenuTagInstanceExtractAs.ForeColor = System.Drawing.Color.LimeGreen;
this.MenuTagInstanceExtractAs.Name = "MenuTagInstanceExtractAs";
this.MenuTagInstanceExtractAs.Size = new System.Drawing.Size(162, 22);
this.MenuTagInstanceExtractAs.Text = "Extract As...";
this.MenuTagInstanceExtractAs.ToolTipText = "Extract the tag to a user defined filename";
this.MenuTagInstanceExtractAs.Click += new System.EventHandler(this.OnTagInstanceExtract);
//
// MenuTagInstanceExtractFolder
//
this.MenuTagInstanceExtractFolder.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.MenuTagInstanceExtractFolderAll});
this.MenuTagInstanceExtractFolder.ForeColor = System.Drawing.Color.LimeGreen;
this.MenuTagInstanceExtractFolder.Name = "MenuTagInstanceExtractFolder";
this.MenuTagInstanceExtractFolder.Size = new System.Drawing.Size(162, 22);
this.MenuTagInstanceExtractFolder.Text = "Extract to folder";
this.MenuTagInstanceExtractFolder.ToolTipText = "Extract tag to a folder";
this.MenuTagInstanceExtractFolder.Click += new System.EventHandler(this.OnTagInstanceExtract);
//
// MenuTagInstanceExtractFolderAll
//
this.MenuTagInstanceExtractFolderAll.BackColor = System.Drawing.SystemColors.ControlDarkDark;
this.MenuTagInstanceExtractFolderAll.ForeColor = System.Drawing.Color.LimeGreen;
this.MenuTagInstanceExtractFolderAll.Name = "MenuTagInstanceExtractFolderAll";
this.MenuTagInstanceExtractFolderAll.Size = new System.Drawing.Size(156, 22);
this.MenuTagInstanceExtractFolderAll.Text = "With dependents";
this.MenuTagInstanceExtractFolderAll.ToolTipText = "Extract the tag to a folder with all its dependents";
this.MenuTagInstanceExtractFolderAll.Click += new System.EventHandler(this.OnTagInstanceExtract);
//
// MenuTagInstanceExtractRsrc
//
this.MenuTagInstanceExtractRsrc.ForeColor = System.Drawing.Color.LimeGreen;
this.MenuTagInstanceExtractRsrc.Name = "MenuTagInstanceExtractRsrc";
this.MenuTagInstanceExtractRsrc.Size = new System.Drawing.Size(162, 22);
this.MenuTagInstanceExtractRsrc.Text = "Extract Resources";
this.MenuTagInstanceExtractRsrc.Click += new System.EventHandler(this.OnTagInstanceExtract);
//
// bgwTagExtract
//
this.bgwTagExtract.WorkerReportsProgress = true;
this.bgwTagExtract.WorkerSupportsCancellation = true;
this.bgwTagExtract.DoWork += new System.ComponentModel.DoWorkEventHandler(this.bgwTagExtractDoWork);
this.bgwTagExtract.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.bgwTagExtractRunWorkerCompleted);
this.bgwTagExtract.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.bgwTagExtractProgressChanged);
//
// bgwCacheOpen
//
this.bgwCacheOpen.DoWork += new System.ComponentModel.DoWorkEventHandler(this.bgwCacheOpenDoWork);
this.bgwCacheOpen.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.bgwCacheOpenRunWorkerCompleted);
this.bgwCacheOpen.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.bgwCacheOpenProgressChanged);
//
// CacheView
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.ControlDarkDark;
this.ClientSize = new System.Drawing.Size(792, 583);
this.Controls.Add(splitContainer1);
this.Controls.Add(this.MainMenu);
this.Controls.Add(StatusStrip);
this.ForeColor = System.Drawing.Color.LightGreen;
this.MainMenuStrip = this.MainMenu;
this.Name = "CacheView";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Cache Viewer";
this.Shown += new System.EventHandler(this.OnFormShown);
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.OnFormClosing);
splitContainer1.Panel1.ResumeLayout(false);
splitContainer1.Panel2.ResumeLayout(false);
splitContainer1.ResumeLayout(false);
StatusStrip.ResumeLayout(false);
StatusStrip.PerformLayout();
this.MainMenu.ResumeLayout(false);
this.MainMenu.PerformLayout();
this.MenuTagInstance.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
示例8: InitializeComponent
//.........这里部分代码省略.........
lblDateOfPublication.Name = "lblDateOfPublication";
//
// lblAuthor
//
resources.ApplyResources(lblAuthor, "lblAuthor");
tplPanel1.SetColumnSpan(lblAuthor, 2);
lblAuthor.Name = "lblAuthor";
//
// btnSearchOnBrowser
//
resources.ApplyResources(btnSearchOnBrowser, "btnSearchOnBrowser");
btnSearchOnBrowser.Name = "btnSearchOnBrowser";
btnSearchOnBrowser.UseVisualStyleBackColor = true;
btnSearchOnBrowser.Click += new System.EventHandler(this.btnSearchOnBrowser_Click);
//
// cmbAuthor
//
resources.ApplyResources(this.cmbAuthor, "cmbAuthor");
tplPanel1.SetColumnSpan(this.cmbAuthor, 2);
this.cmbAuthor.DropDownHeight = 256;
this.cmbAuthor.FormattingEnabled = true;
this.cmbAuthor.Name = "cmbAuthor";
this.cmbAuthor.TextChanged += new System.EventHandler(this.cmbAuthor_TextChanged);
//
// dtpDateOfPublication
//
resources.ApplyResources(this.dtpDateOfPublication, "dtpDateOfPublication");
this.dtpDateOfPublication.Checked = false;
this.dtpDateOfPublication.Name = "dtpDateOfPublication";
this.dtpDateOfPublication.ShowCheckBox = true;
this.dtpDateOfPublication.ValueChanged += new System.EventHandler(this.dtpDateOfIssue_ValueChanged);
//
// tplPanel2
//
resources.ApplyResources(tplPanel2, "tplPanel2");
tplPanel2.Controls.Add(this.lblThumbnail, 0, 0);
tplPanel2.Controls.Add(this.preThumbnail, 0, 2);
tplPanel2.Controls.Add(this.btnUpdate, 1, 1);
tplPanel2.Controls.Add(this.lblSize, 0, 3);
tplPanel2.Controls.Add(this.numThumbnailIndex, 0, 1);
tplPanel2.Controls.Add(btnEdit, 1, 3);
tplPanel2.Name = "tplPanel2";
//
// lblThumbnail
//
resources.ApplyResources(this.lblThumbnail, "lblThumbnail");
this.lblThumbnail.Name = "lblThumbnail";
//
// preThumbnail
//
resources.ApplyResources(this.preThumbnail, "preThumbnail");
tplPanel2.SetColumnSpan(this.preThumbnail, 2);
this.preThumbnail.Description = null;
this.preThumbnail.Image = null;
this.preThumbnail.Name = "preThumbnail";
this.preThumbnail.StretchMode = Comical.Controls.PreviewerStretchMode.Uniform;
//
// btnUpdate
//
resources.ApplyResources(this.btnUpdate, "btnUpdate");
this.btnUpdate.Name = "btnUpdate";
this.btnUpdate.UseVisualStyleBackColor = true;
this.btnUpdate.Click += new System.EventHandler(this.btnUpdate_Click);
//
// lblSize
//
resources.ApplyResources(this.lblSize, "lblSize");
this.lblSize.Name = "lblSize";
//
// numThumbnailIndex
//
resources.ApplyResources(this.numThumbnailIndex, "numThumbnailIndex");
this.numThumbnailIndex.Name = "numThumbnailIndex";
//
// btnEdit
//
resources.ApplyResources(btnEdit, "btnEdit");
btnEdit.Name = "btnEdit";
btnEdit.UseVisualStyleBackColor = true;
btnEdit.Click += new System.EventHandler(this.btnEdit_Click);
//
// DocumentView
//
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
resources.ApplyResources(this, "$this");
this.Controls.Add(splMain);
this.HideOnClose = true;
this.Name = "DocumentView";
splMain.Panel1.ResumeLayout(false);
splMain.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(splMain)).EndInit();
splMain.ResumeLayout(false);
tplPanel1.ResumeLayout(false);
tplPanel1.PerformLayout();
tplPanel2.ResumeLayout(false);
tplPanel2.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.numThumbnailIndex)).EndInit();
this.ResumeLayout(false);
}
示例9: InitializeComponent
//.........这里部分代码省略.........
//
// toolStripSeparator3
//
this.toolStripSeparator3.Name = "toolStripSeparator3";
this.toolStripSeparator3.Size = new System.Drawing.Size(164, 6);
//
// findToolStripMenuItem
//
this.findToolStripMenuItem.Name = "findToolStripMenuItem";
this.findToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.F)));
this.findToolStripMenuItem.Size = new System.Drawing.Size(167, 22);
this.findToolStripMenuItem.Text = "Find...";
this.findToolStripMenuItem.Click += new System.EventHandler(this.findToolStripMenuItem_Click);
//
// _timer
//
this._timer.Enabled = true;
this._timer.Interval = 500;
this._timer.Tick += new System.EventHandler(this.Timer_Tick);
//
// toolStripContainer1
//
//
// toolStripContainer1.ContentPanel
//
this.toolStripContainer1.ContentPanel.Controls.Add(_tabControl);
this.toolStripContainer1.ContentPanel.Margin = new System.Windows.Forms.Padding(2);
this.toolStripContainer1.ContentPanel.Size = new System.Drawing.Size(578, 386);
this.toolStripContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
this.toolStripContainer1.Location = new System.Drawing.Point(0, 0);
this.toolStripContainer1.Margin = new System.Windows.Forms.Padding(2);
this.toolStripContainer1.Name = "toolStripContainer1";
this.toolStripContainer1.Size = new System.Drawing.Size(578, 410);
this.toolStripContainer1.TabIndex = 0;
this.toolStripContainer1.Text = "toolStripContainer1";
//
// toolStripContainer1.TopToolStripPanel
//
this.toolStripContainer1.TopToolStripPanel.Controls.Add(this._mainMenu);
//
// _mainMenu
//
this._mainMenu.Dock = System.Windows.Forms.DockStyle.None;
this._mainMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
fileToolStripMenuItem,
this._editMenu,
helpToolStripMenuItem});
this._mainMenu.Location = new System.Drawing.Point(0, 0);
this._mainMenu.Name = "_mainMenu";
this._mainMenu.Size = new System.Drawing.Size(578, 24);
this._mainMenu.TabIndex = 0;
this._mainMenu.Text = "menuStrip1";
//
// _openFileDialog
//
this._openFileDialog.DefaultExt = "wiki";
this._openFileDialog.Filter = "Wiki files (*.wiki)|*.wiki|Text files (*.txt)|*.txt|All files (*.*)|*.*";
//
// _commandProvider
//
this._commandProvider.CommandTable = null;
this._commandProvider.CommandClick += new System.EventHandler<WikiPad.StandardCommandEventArgs>(this.StandardCommand_CommandClick);
//
// replaceToolStripMenuItem
//
this.replaceToolStripMenuItem.Name = "replaceToolStripMenuItem";
this.replaceToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.H)));
this.replaceToolStripMenuItem.Size = new System.Drawing.Size(167, 22);
this.replaceToolStripMenuItem.Text = "Replace...";
this.replaceToolStripMenuItem.Click += new System.EventHandler(this.replaceToolStripMenuItem_Click);
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(578, 410);
this.Controls.Add(this.toolStripContainer1);
this.Margin = new System.Windows.Forms.Padding(2);
this.Name = "MainForm";
this.Text = "WikiPad";
this.Load += new System.EventHandler(this.Form_Load);
this.Activated += new System.EventHandler(this.Form_Activated);
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form_FormClosing);
splitContainer.Panel1.ResumeLayout(false);
splitContainer.Panel1.PerformLayout();
splitContainer.Panel2.ResumeLayout(false);
splitContainer.ResumeLayout(false);
_tabControl.ResumeLayout(false);
_wikiTab.ResumeLayout(false);
_htmlSourceTab.ResumeLayout(false);
this.toolStripContainer1.ContentPanel.ResumeLayout(false);
this.toolStripContainer1.TopToolStripPanel.ResumeLayout(false);
this.toolStripContainer1.TopToolStripPanel.PerformLayout();
this.toolStripContainer1.ResumeLayout(false);
this.toolStripContainer1.PerformLayout();
this._mainMenu.ResumeLayout(false);
this._mainMenu.PerformLayout();
this.ResumeLayout(false);
}
示例10: 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();
}
示例11: InitializeComponent
//.........这里部分代码省略.........
this.dataGridView.Location = new System.Drawing.Point( 0, 0 );
this.dataGridView.MultiSelect = false;
this.dataGridView.Name = "dataGridView";
this.dataGridView.RowHeadersVisible = false;
this.dataGridView.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
this.dataGridView.ShowCellErrors = false;
this.dataGridView.ShowCellToolTips = false;
this.dataGridView.ShowEditingIcon = false;
this.dataGridView.ShowRowErrors = false;
this.dataGridView.Size = new System.Drawing.Size( 683, 356 );
this.dataGridView.TabIndex = 0;
//
// Item
//
this.Item.DataPropertyName = "Item";
this.Item.HeaderText = "Item";
this.Item.Name = "Item";
this.Item.ReadOnly = true;
this.Item.Width = 52;
//
// Type
//
this.Type.DataPropertyName = "Type";
this.Type.HeaderText = "Type";
this.Type.Name = "Type";
this.Type.ReadOnly = true;
this.Type.Width = 56;
//
// SubType
//
this.SubType.DataPropertyName = "SubType";
this.SubType.HeaderText = "Sub-type";
this.SubType.Name = "SubType";
this.SubType.ReadOnly = true;
this.SubType.Width = 74;
//
// Quantity
//
this.Quantity.DataPropertyName = "InventoryQuantity";
this.Quantity.HeaderText = "Quantity";
this.Quantity.Name = "Quantity";
this.Quantity.Width = 71;
//
// splitContainer
//
splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
splitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
splitContainer.IsSplitterFixed = true;
splitContainer.Location = new System.Drawing.Point( 0, 0 );
splitContainer.Name = "splitContainer";
splitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
//
// splitContainer.Panel1
//
splitContainer.Panel1.Controls.Add( this.filterLabel );
splitContainer.Panel1.Controls.Add( this.filterComboBox );
//
// splitContainer.Panel2
//
splitContainer.Panel2.Controls.Add( this.dataGridView );
splitContainer.Size = new System.Drawing.Size( 683, 388 );
splitContainer.SplitterDistance = 28;
splitContainer.TabIndex = 1;
//
// filterLabel
//
this.filterLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Right)));
this.filterLabel.AutoSize = true;
this.filterLabel.Location = new System.Drawing.Point( 463, 3 );
this.filterLabel.Name = "filterLabel";
this.filterLabel.Size = new System.Drawing.Size( 32, 13 );
this.filterLabel.TabIndex = 1;
this.filterLabel.Text = "Filter:";
//
// filterComboBox
//
this.filterComboBox.Dock = System.Windows.Forms.DockStyle.Right;
this.filterComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.filterComboBox.FormattingEnabled = true;
this.filterComboBox.Location = new System.Drawing.Point( 501, 0 );
this.filterComboBox.Name = "filterComboBox";
this.filterComboBox.Size = new System.Drawing.Size( 182, 21 );
this.filterComboBox.TabIndex = 0;
//
// InventoryEditor
//
this.AutoScaleDimensions = new System.Drawing.SizeF( 6F, 13F );
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add( splitContainer );
this.Name = "InventoryEditor";
this.Size = new System.Drawing.Size( 683, 388 );
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
splitContainer.Panel1.ResumeLayout( false );
splitContainer.Panel1.PerformLayout();
splitContainer.Panel2.ResumeLayout( false );
splitContainer.ResumeLayout( false );
this.ResumeLayout( false );
}
示例12: InitializeComponent
//.........这里部分代码省略.........
"nil",
"result"});
this.comboSelf.Location = new System.Drawing.Point(35, 3);
this.comboSelf.Name = "comboSelf";
this.comboSelf.Size = new System.Drawing.Size(236, 21);
this.comboSelf.TabIndex = 1;
//
// label1
//
label1.AutoSize = true;
label1.Location = new System.Drawing.Point(3, 6);
label1.Name = "label1";
label1.Size = new System.Drawing.Size(26, 13);
label1.TabIndex = 0;
label1.Text = "self:";
//
// buttonEvalExpression
//
this.buttonEvalExpression.Dock = System.Windows.Forms.DockStyle.Fill;
this.buttonEvalExpression.Location = new System.Drawing.Point(282, 187);
this.buttonEvalExpression.Name = "buttonEvalExpression";
this.buttonEvalExpression.Size = new System.Drawing.Size(273, 24);
this.buttonEvalExpression.TabIndex = 9;
this.buttonEvalExpression.Text = "Eval Expression";
this.buttonEvalExpression.UseVisualStyleBackColor = true;
this.buttonEvalExpression.Click += new System.EventHandler(this.buttonEvalExpression_Click);
//
// buttonJitExpression
//
this.buttonJitExpression.Dock = System.Windows.Forms.DockStyle.Fill;
this.buttonJitExpression.Location = new System.Drawing.Point(3, 187);
this.buttonJitExpression.Name = "buttonJitExpression";
this.buttonJitExpression.Size = new System.Drawing.Size(273, 24);
this.buttonJitExpression.TabIndex = 8;
this.buttonJitExpression.Text = "JIT Expression";
this.buttonJitExpression.UseVisualStyleBackColor = true;
this.buttonJitExpression.Click += new System.EventHandler(this.buttonJitExpression_Click);
//
// textEvaluate
//
this.textEvaluate.AcceptsTab = true;
this.textEvaluate.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)));
tableLayoutPanel4.SetColumnSpan(this.textEvaluate, 3);
this.textEvaluate.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.textEvaluate.HideSelection = false;
this.textEvaluate.Location = new System.Drawing.Point(3, 3);
this.textEvaluate.Multiline = true;
this.textEvaluate.Name = "textEvaluate";
this.textEvaluate.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.textEvaluate.Size = new System.Drawing.Size(832, 178);
this.textEvaluate.TabIndex = 7;
//
// textResultEvaluate
//
this.textResultEvaluate.AcceptsTab = true;
this.textResultEvaluate.Dock = System.Windows.Forms.DockStyle.Fill;
this.textResultEvaluate.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.textResultEvaluate.HideSelection = false;
this.textResultEvaluate.Location = new System.Drawing.Point(0, 0);
this.textResultEvaluate.Multiline = true;
this.textResultEvaluate.Name = "textResultEvaluate";
this.textResultEvaluate.ReadOnly = true;
this.textResultEvaluate.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.textResultEvaluate.Size = new System.Drawing.Size(838, 139);
this.textResultEvaluate.TabIndex = 8;
//
// WorkspaceTester
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(852, 389);
this.Controls.Add(tabControl1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "WorkspaceTester";
this.Text = "Compiler / Installer / Code Generator - Tester";
this.Load += new System.EventHandler(this.WorkspaceTester_Load);
tabControl1.ResumeLayout(false);
this.tabPage1.ResumeLayout(false);
splitContainer1.Panel1.ResumeLayout(false);
splitContainer1.Panel2.ResumeLayout(false);
splitContainer1.Panel2.PerformLayout();
((System.ComponentModel.ISupportInitialize)(splitContainer1)).EndInit();
splitContainer1.ResumeLayout(false);
tableLayoutPanel3.ResumeLayout(false);
tableLayoutPanel3.PerformLayout();
this.tabPage2.ResumeLayout(false);
splitContainer2.Panel1.ResumeLayout(false);
splitContainer2.Panel2.ResumeLayout(false);
splitContainer2.Panel2.PerformLayout();
((System.ComponentModel.ISupportInitialize)(splitContainer2)).EndInit();
splitContainer2.ResumeLayout(false);
tableLayoutPanel4.ResumeLayout(false);
tableLayoutPanel4.PerformLayout();
panel1.ResumeLayout(false);
panel1.PerformLayout();
this.ResumeLayout(false);
}
示例13: InitializeComponent
//.........这里部分代码省略.........
| System.Windows.Forms.AnchorStyles.Right)));
this.comboClassPools.FormattingEnabled = true;
this.comboClassPools.Location = new System.Drawing.Point(109, 161);
this.comboClassPools.Name = "comboClassPools";
this.comboClassPools.Separator = " ";
this.comboClassPools.Size = new System.Drawing.Size(173, 21);
this.comboClassPools.TabIndex = 7;
this.comboClassPools.TextChanged += new System.EventHandler(this.comboClassPools_TextChanged);
//
// comboClassSuperclass
//
this.comboClassSuperclass.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.comboClassSuperclass.FormattingEnabled = true;
this.comboClassSuperclass.Location = new System.Drawing.Point(109, 29);
this.comboClassSuperclass.Name = "comboClassSuperclass";
this.comboClassSuperclass.Size = new System.Drawing.Size(173, 21);
this.comboClassSuperclass.TabIndex = 2;
this.comboClassSuperclass.TextChanged += new System.EventHandler(this.comboClassSuperclass_TextChanged);
//
// txtClassName
//
this.txtClassName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtClassName.Location = new System.Drawing.Point(109, 3);
this.txtClassName.Name = "txtClassName";
this.txtClassName.Size = new System.Drawing.Size(173, 20);
this.txtClassName.TabIndex = 1;
this.txtClassName.TextChanged += new System.EventHandler(this.txtClassName_TextChanged);
//
// comboImplementedInstanceProtocols
//
this.comboImplementedInstanceProtocols.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.comboImplementedInstanceProtocols.FormattingEnabled = true;
this.comboImplementedInstanceProtocols.Location = new System.Drawing.Point(109, 188);
this.comboImplementedInstanceProtocols.Name = "comboImplementedInstanceProtocols";
this.comboImplementedInstanceProtocols.Separator = " ";
this.comboImplementedInstanceProtocols.Size = new System.Drawing.Size(173, 21);
this.comboImplementedInstanceProtocols.TabIndex = 8;
this.comboImplementedInstanceProtocols.TextChanged += new System.EventHandler(this.comboImplementedInstanceProtocols_TextChanged);
//
// comboImplementedClassProtocols
//
this.comboImplementedClassProtocols.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.comboImplementedClassProtocols.FormattingEnabled = true;
this.comboImplementedClassProtocols.Location = new System.Drawing.Point(109, 215);
this.comboImplementedClassProtocols.Name = "comboImplementedClassProtocols";
this.comboImplementedClassProtocols.Separator = " ";
this.comboImplementedClassProtocols.Size = new System.Drawing.Size(173, 21);
this.comboImplementedClassProtocols.TabIndex = 9;
this.comboImplementedClassProtocols.TextChanged += new System.EventHandler(this.comboImplementedClassProtocols_TextChanged);
//
// textNativeType
//
this.textNativeType.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.textNativeType.Location = new System.Drawing.Point(109, 242);
this.textNativeType.Name = "textNativeType";
this.textNativeType.Size = new System.Drawing.Size(173, 20);
this.textNativeType.TabIndex = 6;
this.textNativeType.TextChanged += new System.EventHandler(this.textNativeType_TextChanged);
//
// ClassDefinitionControl
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(splitContainer1);
this.Controls.Add(this.textNativeType);
this.Controls.Add(this.txtClassClassInstanceVars);
this.Controls.Add(this.txtClassName);
this.Controls.Add(this.txtClassClassVars);
this.Controls.Add(this.txtClassInstanceVars);
this.Controls.Add(this.comboClassInstanceState);
this.Controls.Add(this.comboImplementedClassProtocols);
this.Controls.Add(this.comboImplementedInstanceProtocols);
this.Controls.Add(this.comboClassPools);
this.Controls.Add(label3);
this.Controls.Add(this.comboClassSuperclass);
this.Controls.Add(label2);
this.Controls.Add(label4);
this.Controls.Add(label15);
this.Controls.Add(label14);
this.Controls.Add(label13);
this.Controls.Add(label12);
this.Controls.Add(label11);
this.Controls.Add(label1);
this.Controls.Add(label10);
this.Name = "ClassDefinitionControl";
this.Size = new System.Drawing.Size(285, 422);
splitContainer1.Panel1.ResumeLayout(false);
splitContainer1.Panel2.ResumeLayout(false);
splitContainer1.Panel2.PerformLayout();
((System.ComponentModel.ISupportInitialize)(splitContainer1)).EndInit();
splitContainer1.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
示例14: InitializeComponent
//.........这里部分代码省略.........
this.setKugelmatikButton.Location = new System.Drawing.Point(168, 46);
this.setKugelmatikButton.Name = "setKugelmatikButton";
this.setKugelmatikButton.Size = new System.Drawing.Size(154, 23);
this.setKugelmatikButton.TabIndex = 3;
this.setKugelmatikButton.Text = "Set Kugelmatik";
this.setKugelmatikButton.UseVisualStyleBackColor = true;
this.setKugelmatikButton.Click += new System.EventHandler(this.setKugelmatikButton_Click);
//
// setClusterButton
//
this.setClusterButton.Location = new System.Drawing.Point(6, 46);
this.setClusterButton.Name = "setClusterButton";
this.setClusterButton.Size = new System.Drawing.Size(156, 23);
this.setClusterButton.TabIndex = 1;
this.setClusterButton.Text = "Set cluster";
this.setClusterButton.UseVisualStyleBackColor = true;
this.setClusterButton.Click += new System.EventHandler(this.setClusterButton_Click);
//
// fixStepperButton
//
this.fixStepperButton.Location = new System.Drawing.Point(87, 22);
this.fixStepperButton.Name = "fixStepperButton";
this.fixStepperButton.Size = new System.Drawing.Size(75, 23);
this.fixStepperButton.TabIndex = 2;
this.fixStepperButton.Text = "Fix";
this.fixStepperButton.UseVisualStyleBackColor = true;
this.fixStepperButton.Click += new System.EventHandler(this.fixStepperButton_Click);
//
// homeStepperButton
//
this.homeStepperButton.Location = new System.Drawing.Point(6, 22);
this.homeStepperButton.Name = "homeStepperButton";
this.homeStepperButton.Size = new System.Drawing.Size(75, 23);
this.homeStepperButton.TabIndex = 0;
this.homeStepperButton.Text = "Home";
this.homeStepperButton.UseVisualStyleBackColor = true;
this.homeStepperButton.Click += new System.EventHandler(this.homeStepperButton_Click);
//
// clusterBox
//
this.clusterBox.Controls.Add(splitContainer1);
this.clusterBox.Dock = System.Windows.Forms.DockStyle.Fill;
this.clusterBox.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.clusterBox.Location = new System.Drawing.Point(0, 0);
this.clusterBox.Name = "clusterBox";
this.clusterBox.Size = new System.Drawing.Size(696, 438);
this.clusterBox.TabIndex = 2;
this.clusterBox.TabStop = false;
this.clusterBox.Text = "Cluster";
//
// blinkContextMenu
//
this.blinkContextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.greenToolStripMenuItem,
this.redToolStripMenuItem});
this.blinkContextMenu.Name = "blinkContextMenu";
this.blinkContextMenu.Size = new System.Drawing.Size(106, 48);
//
// greenToolStripMenuItem
//
this.greenToolStripMenuItem.Name = "greenToolStripMenuItem";
this.greenToolStripMenuItem.Size = new System.Drawing.Size(105, 22);
this.greenToolStripMenuItem.Text = "Green";
this.greenToolStripMenuItem.Click += new System.EventHandler(this.greenToolStripMenuItem_Click);
//
// redToolStripMenuItem
//
this.redToolStripMenuItem.Name = "redToolStripMenuItem";
this.redToolStripMenuItem.Size = new System.Drawing.Size(105, 22);
this.redToolStripMenuItem.Text = "Red";
this.redToolStripMenuItem.Click += new System.EventHandler(this.redToolStripMenuItem_Click);
//
// ClusterControlDetailed
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.clusterBox);
this.Name = "ClusterControlDetailed";
this.Size = new System.Drawing.Size(696, 438);
splitContainer1.Panel1.ResumeLayout(false);
splitContainer1.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(splitContainer1)).EndInit();
splitContainer1.ResumeLayout(false);
this.splitContainer2.Panel1.ResumeLayout(false);
this.splitContainer2.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
this.splitContainer2.ResumeLayout(false);
this.splitContainer3.Panel1.ResumeLayout(false);
this.splitContainer3.Panel2.ResumeLayout(false);
this.splitContainer3.Panel2.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.splitContainer3)).EndInit();
this.splitContainer3.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.clusterHeightTrackBar)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.clusterHeight)).EndInit();
this.stepperBox.ResumeLayout(false);
this.clusterBox.ResumeLayout(false);
this.blinkContextMenu.ResumeLayout(false);
this.ResumeLayout(false);
}
示例15: InitializeComponent
//.........这里部分代码省略.........
// groupBox2
//
groupBox2.Controls.Add(this.checkBox1);
groupBox2.Controls.Add(this.trvDictView);
groupBox2.Controls.Add(this.chbLoadMorphData);
groupBox2.Controls.Add(this.button1);
groupBox2.Controls.Add(this.btnLoadHSpellFolder);
groupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
groupBox2.Location = new System.Drawing.Point(0, 0);
groupBox2.Name = "groupBox2";
groupBox2.Size = new System.Drawing.Size(320, 392);
groupBox2.TabIndex = 5;
groupBox2.TabStop = false;
groupBox2.Text = "Dictionary viewer";
//
// checkBox1
//
this.checkBox1.AutoSize = true;
this.checkBox1.Checked = true;
this.checkBox1.CheckState = System.Windows.Forms.CheckState.Checked;
this.checkBox1.Location = new System.Drawing.Point(6, 62);
this.checkBox1.Name = "checkBox1";
this.checkBox1.Size = new System.Drawing.Size(136, 17);
this.checkBox1.TabIndex = 2;
this.checkBox1.Text = "Load morpholigcal data";
this.checkBox1.UseVisualStyleBackColor = true;
//
// trvDictView
//
this.trvDictView.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.trvDictView.Location = new System.Drawing.Point(6, 90);
this.trvDictView.Name = "trvDictView";
this.trvDictView.Size = new System.Drawing.Size(308, 296);
this.trvDictView.TabIndex = 4;
this.trvDictView.BeforeExpand += new System.Windows.Forms.TreeViewCancelEventHandler(this.trvDictView_BeforeExpand);
//
// chbLoadMorphData
//
this.chbLoadMorphData.AutoSize = true;
this.chbLoadMorphData.Checked = true;
this.chbLoadMorphData.CheckState = System.Windows.Forms.CheckState.Checked;
this.chbLoadMorphData.Location = new System.Drawing.Point(6, 62);
this.chbLoadMorphData.Name = "chbLoadMorphData";
this.chbLoadMorphData.Size = new System.Drawing.Size(136, 17);
this.chbLoadMorphData.TabIndex = 2;
this.chbLoadMorphData.Text = "Load morpholigcal data";
this.chbLoadMorphData.UseVisualStyleBackColor = true;
//
// button1
//
this.button1.Location = new System.Drawing.Point(6, 19);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(158, 37);
this.button1.TabIndex = 1;
this.button1.Text = "Load from HSpell folder";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.btnLoadHSpellFolder_Click);
//
// btnLoadHSpellFolder
//
this.btnLoadHSpellFolder.Location = new System.Drawing.Point(6, 19);
this.btnLoadHSpellFolder.Name = "btnLoadHSpellFolder";
this.btnLoadHSpellFolder.Size = new System.Drawing.Size(158, 37);
this.btnLoadHSpellFolder.TabIndex = 1;
this.btnLoadHSpellFolder.Text = "Load from HSpell folder";
this.btnLoadHSpellFolder.UseVisualStyleBackColor = true;
this.btnLoadHSpellFolder.Click += new System.EventHandler(this.btnLoadHSpellFolder_Click);
//
// groupBox1
//
this.groupBox1.Location = new System.Drawing.Point(25, 71);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(201, 340);
this.groupBox1.TabIndex = 5;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Dictionary viewer";
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(907, 392);
this.Controls.Add(splitContainer1);
this.Name = "MainForm";
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
this.Text = "Visual HebMorph";
splitContainer1.Panel1.ResumeLayout(false);
splitContainer1.Panel2.ResumeLayout(false);
splitContainer1.ResumeLayout(false);
groupBox4.ResumeLayout(false);
groupBox4.PerformLayout();
groupBox3.ResumeLayout(false);
groupBox3.PerformLayout();
groupBox2.ResumeLayout(false);
groupBox2.PerformLayout();
this.ResumeLayout(false);
}