本文整理汇总了C#中System.Windows.Forms.GroupBox.PerformLayout方法的典型用法代码示例。如果您正苦于以下问题:C# System.Windows.Forms.GroupBox.PerformLayout方法的具体用法?C# System.Windows.Forms.GroupBox.PerformLayout怎么用?C# System.Windows.Forms.GroupBox.PerformLayout使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Windows.Forms.GroupBox
的用法示例。
在下文中一共展示了System.Windows.Forms.GroupBox.PerformLayout方法的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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AboutDialog));
lblNameAndVersion = new System.Windows.Forms.Label();
lblAuthor = new System.Windows.Forms.Label();
pictureBox1 = new System.Windows.Forms.PictureBox();
groupBox1 = new System.Windows.Forms.GroupBox();
((System.ComponentModel.ISupportInitialize)pictureBox1).BeginInit();
groupBox1.SuspendLayout();
base.SuspendLayout();
resources.ApplyResources(lblNameAndVersion, "lblNameAndVersion");
lblNameAndVersion.BackColor = System.Drawing.Color.Transparent;
lblNameAndVersion.ForeColor = System.Drawing.Color.Black;
lblNameAndVersion.Name = "lblNameAndVersion";
resources.ApplyResources(lblAuthor, "lblAuthor");
lblAuthor.BackColor = System.Drawing.Color.Transparent;
lblAuthor.ForeColor = System.Drawing.Color.Black;
lblAuthor.Name = "lblAuthor";
resources.ApplyResources(pictureBox1, "pictureBox1");
pictureBox1.Name = "pictureBox1";
pictureBox1.TabStop = false;
groupBox1.Controls.Add(pictureBox1);
groupBox1.Controls.Add(lblNameAndVersion);
groupBox1.Controls.Add(lblAuthor);
resources.ApplyResources(groupBox1, "groupBox1");
groupBox1.Name = "groupBox1";
groupBox1.TabStop = false;
resources.ApplyResources(this, "$this");
base.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
BackColor = System.Drawing.SystemColors.Control;
base.Controls.Add(groupBox1);
base.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
base.KeyPreview = true;
base.Name = "AboutDialog";
base.ShowInTaskbar = false;
base.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
base.Click += AboutDialog_Click;
base.KeyDown += AboutDialog_KeyDown;
((System.ComponentModel.ISupportInitialize)pictureBox1).EndInit();
groupBox1.ResumeLayout(false);
groupBox1.PerformLayout();
base.ResumeLayout(false);
}
示例2: 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.GroupBox groupBox1;
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ClickActionKeystrokePropertyComponentControl));
this.label1 = new System.Windows.Forms.Label();
this._keyStrokeCaptureBox = new ClearCanvas.Desktop.View.WinForms.KeyStrokeCaptureBox();
groupBox1 = new System.Windows.Forms.GroupBox();
groupBox1.SuspendLayout();
this.SuspendLayout();
//
// groupBox1
//
groupBox1.Controls.Add(this.label1);
groupBox1.Controls.Add(this._keyStrokeCaptureBox);
resources.ApplyResources(groupBox1, "groupBox1");
groupBox1.Name = "groupBox1";
groupBox1.TabStop = false;
//
// label1
//
resources.ApplyResources(this.label1, "label1");
this.label1.Name = "label1";
//
// _keyStrokeCaptureBox
//
resources.ApplyResources(this._keyStrokeCaptureBox, "_keyStrokeCaptureBox");
this._keyStrokeCaptureBox.Name = "_keyStrokeCaptureBox";
this._keyStrokeCaptureBox.ShowClearButton = true;
this._keyStrokeCaptureBox.ValidateKeyStroke += new ClearCanvas.Desktop.View.WinForms.ValidateKeyStrokeEventHandler(this._keyStrokeCaptureBox_ValidateKeyStroke);
//
// ClickActionKeystrokePropertyComponentControl
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(groupBox1);
this.Name = "ClickActionKeystrokePropertyComponentControl";
groupBox1.ResumeLayout(false);
groupBox1.PerformLayout();
this.ResumeLayout(false);
}
开发者ID:m-berkani,项目名称:ClearCanvas,代码行数:44,代码来源:ClickActionKeystrokePropertyComponentControl.Designer.cs
示例3: InitializeComponent
//.........这里部分代码省略.........
//
// groupBox1
//
resources.ApplyResources(groupBox1, "groupBox1");
groupBox1.Controls.Add(this.dashDotDotRadioButton);
groupBox1.Controls.Add(this.dotRadioButton);
groupBox1.Controls.Add(this.dashDotRadioButton);
groupBox1.Controls.Add(this.dashRadioButton);
groupBox1.Controls.Add(this.solidRadioButton);
groupBox1.Name = "groupBox1";
groupBox1.TabStop = false;
//
// dashDotDotRadioButton
//
resources.ApplyResources(this.dashDotDotRadioButton, "dashDotDotRadioButton");
this.dashDotDotRadioButton.Image = global::Ecell.IDE.Plugins.TracerWindow.Properties.Resources.dashdotdot;
this.dashDotDotRadioButton.Name = "dashDotDotRadioButton";
this.dashDotDotRadioButton.TabStop = true;
this.dashDotDotRadioButton.UseVisualStyleBackColor = true;
//
// dotRadioButton
//
resources.ApplyResources(this.dotRadioButton, "dotRadioButton");
this.dotRadioButton.Image = global::Ecell.IDE.Plugins.TracerWindow.Properties.Resources.dot;
this.dotRadioButton.Name = "dotRadioButton";
this.dotRadioButton.TabStop = true;
this.dotRadioButton.UseVisualStyleBackColor = true;
//
// dashDotRadioButton
//
resources.ApplyResources(this.dashDotRadioButton, "dashDotRadioButton");
this.dashDotRadioButton.Image = global::Ecell.IDE.Plugins.TracerWindow.Properties.Resources.dashdot;
this.dashDotRadioButton.Name = "dashDotRadioButton";
this.dashDotRadioButton.TabStop = true;
this.dashDotRadioButton.UseVisualStyleBackColor = true;
//
// dashRadioButton
//
resources.ApplyResources(this.dashRadioButton, "dashRadioButton");
this.dashRadioButton.Image = global::Ecell.IDE.Plugins.TracerWindow.Properties.Resources.dash;
this.dashRadioButton.Name = "dashRadioButton";
this.dashRadioButton.TabStop = true;
this.dashRadioButton.UseVisualStyleBackColor = true;
//
// solidRadioButton
//
resources.ApplyResources(this.solidRadioButton, "solidRadioButton");
this.solidRadioButton.Image = global::Ecell.IDE.Plugins.TracerWindow.Properties.Resources.solid;
this.solidRadioButton.Name = "solidRadioButton";
this.solidRadioButton.TabStop = true;
this.solidRadioButton.UseVisualStyleBackColor = true;
//
// groupBox2
//
this.groupBox2.Controls.Add(this.lineTextBox);
resources.ApplyResources(this.groupBox2, "groupBox2");
this.groupBox2.Name = "groupBox2";
this.groupBox2.TabStop = false;
//
// lineTextBox
//
resources.ApplyResources(this.lineTextBox, "lineTextBox");
this.lineTextBox.Name = "lineTextBox";
this.lineTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.lineTextBox_Validating);
//
// LSApplyButton
//
resources.ApplyResources(this.LSApplyButton, "LSApplyButton");
this.LSApplyButton.DialogResult = System.Windows.Forms.DialogResult.OK;
this.LSApplyButton.Name = "LSApplyButton";
this.LSApplyButton.UseVisualStyleBackColor = true;
//
// LSCloseButton
//
resources.ApplyResources(this.LSCloseButton, "LSCloseButton");
this.LSCloseButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.LSCloseButton.Name = "LSCloseButton";
this.LSCloseButton.UseVisualStyleBackColor = true;
this.LSCloseButton.Click += new System.EventHandler(this.LineCancelButton_Click);
//
// LineStyleDialog
//
this.AcceptButton = this.LSApplyButton;
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.LSCloseButton;
this.Controls.Add(this.groupBox2);
this.Controls.Add(groupBox1);
this.Controls.Add(this.LSApplyButton);
this.Controls.Add(this.LSCloseButton);
this.Name = "LineStyleDialog";
this.Shown += new System.EventHandler(this.LineStyleShown);
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.LineStyleDialogClosing);
groupBox1.ResumeLayout(false);
groupBox1.PerformLayout();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.ResumeLayout(false);
}
示例4: InitializeComponent
//.........这里部分代码省略.........
this.childProcessLabel.Size = new System.Drawing.Size(85, 28);
this.childProcessLabel.TabIndex = 9;
this.childProcessLabel.Text = "Child Processes:";
this.childProcessLabel.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
//
// childProcesses
//
this.childProcesses.Dock = System.Windows.Forms.DockStyle.Fill;
this.childProcesses.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
this.childProcesses.Location = new System.Drawing.Point(3, 143);
this.childProcesses.MinimumSize = new System.Drawing.Size(0, 40);
this.childProcesses.Name = "childProcesses";
this.childProcesses.Size = new System.Drawing.Size(351, 40);
this.childProcesses.TabIndex = 5;
this.childProcesses.UseCompatibleStateImageBehavior = false;
this.childProcesses.View = System.Windows.Forms.View.Tile;
this.childProcesses.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.childProcesses_MouseDoubleClick);
//
// rightclickContext
//
this.rightclickContext.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.openThisCaptureToolStripMenuItem,
this.saveThisCaptureToolStripMenuItem,
this.deleteThisCaptureToolStripMenuItem});
this.rightclickContext.Name = "rightclickContext";
this.rightclickContext.Size = new System.Drawing.Size(124, 70);
//
// openThisCaptureToolStripMenuItem
//
this.openThisCaptureToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.openToolStripMenuItem1,
this.newInstanceToolStripMenuItem1});
this.openThisCaptureToolStripMenuItem.Name = "openThisCaptureToolStripMenuItem";
this.openThisCaptureToolStripMenuItem.Size = new System.Drawing.Size(123, 22);
this.openThisCaptureToolStripMenuItem.Text = "&Open in...";
//
// openToolStripMenuItem1
//
this.openToolStripMenuItem1.Name = "openToolStripMenuItem1";
this.openToolStripMenuItem1.Size = new System.Drawing.Size(138, 22);
this.openToolStripMenuItem1.Text = "This instance";
this.openToolStripMenuItem1.Click += new System.EventHandler(this.openCapture_Click);
//
// newInstanceToolStripMenuItem1
//
this.newInstanceToolStripMenuItem1.Name = "newInstanceToolStripMenuItem1";
this.newInstanceToolStripMenuItem1.Size = new System.Drawing.Size(138, 22);
this.newInstanceToolStripMenuItem1.Text = "New instance";
this.newInstanceToolStripMenuItem1.Click += new System.EventHandler(this.openNewWindow_Click);
//
// saveThisCaptureToolStripMenuItem
//
this.saveThisCaptureToolStripMenuItem.Name = "saveThisCaptureToolStripMenuItem";
this.saveThisCaptureToolStripMenuItem.Size = new System.Drawing.Size(123, 22);
this.saveThisCaptureToolStripMenuItem.Text = "&Save";
this.saveThisCaptureToolStripMenuItem.Click += new System.EventHandler(this.saveCapture_Click);
//
// deleteThisCaptureToolStripMenuItem
//
this.deleteThisCaptureToolStripMenuItem.Name = "deleteThisCaptureToolStripMenuItem";
this.deleteThisCaptureToolStripMenuItem.Size = new System.Drawing.Size(123, 22);
this.deleteThisCaptureToolStripMenuItem.Text = "&Delete";
this.deleteThisCaptureToolStripMenuItem.Click += new System.EventHandler(this.deleteCapture_Click);
//
// captureCountdown
//
this.captureCountdown.Interval = 1000;
this.captureCountdown.Tick += new System.EventHandler(this.captureCountdown_Tick);
//
// childUpdateTimer
//
this.childUpdateTimer.Enabled = true;
this.childUpdateTimer.Tick += new System.EventHandler(this.childUpdateTimer_Tick);
//
// LiveCapture
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(357, 400);
this.Controls.Add(this.tableLayoutPanel1);
this.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.Name = "LiveCapture";
this.Text = "Connecting...";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.LiveCapture_FormClosing);
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.LiveCapture_FormClosed);
this.Shown += new System.EventHandler(this.LiveCapture_Shown);
groupBox1.ResumeLayout(false);
groupBox1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.captureFrame)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.captureDelay)).EndInit();
toolStrip1.ResumeLayout(false);
toolStrip1.PerformLayout();
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel1.PerformLayout();
this.flowLayoutPanel1.ResumeLayout(false);
this.flowLayoutPanel1.PerformLayout();
this.rightclickContext.ResumeLayout(false);
this.ResumeLayout(false);
}
示例5: InitializeComponent
//.........这里部分代码省略.........
roleLabel.Name = "roleLabel";
roleLabel.Size = new System.Drawing.Size(32,13);
roleLabel.TabIndex = 0;
roleLabel.Text = "Role:";
//
// createRoleButton
//
createRoleButton.Location = new System.Drawing.Point(154,34);
createRoleButton.Name = "createRoleButton";
createRoleButton.Size = new System.Drawing.Size(75,23);
createRoleButton.TabIndex = 4;
createRoleButton.Text = "Create Role";
createRoleButton.Click += new System.EventHandler(this.OnCreateRole);
//
// closeButton
//
closeButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
closeButton.Location = new System.Drawing.Point(160,248);
closeButton.Name = "closeButton";
closeButton.Size = new System.Drawing.Size(75,23);
closeButton.TabIndex = 5;
closeButton.Text = "Close";
closeButton.Click += new System.EventHandler(this.OnClosed);
//
// newRoleGroup
//
newRoleGroup.Controls.Add(createRoleButton);
newRoleGroup.Controls.Add(roleLabel);
newRoleGroup.Controls.Add(this.m_RoleTextBox);
newRoleGroup.Location = new System.Drawing.Point(6,11);
newRoleGroup.Name = "newRoleGroup";
newRoleGroup.Size = new System.Drawing.Size(237,67);
newRoleGroup.TabIndex = 6;
newRoleGroup.TabStop = false;
newRoleGroup.Text = "New Role:";
//
// m_RoleTextBox
//
this.m_RoleTextBox.Location = new System.Drawing.Point(11,36);
this.m_RoleTextBox.Name = "m_RoleTextBox";
this.m_RoleTextBox.Size = new System.Drawing.Size(121,20);
this.m_RoleTextBox.TabIndex = 1;
//
// createdGroup
//
createdGroup.Controls.Add(this.m_CreatedRolesListView);
createdGroup.Location = new System.Drawing.Point(6,84);
createdGroup.Name = "createdGroup";
createdGroup.Size = new System.Drawing.Size(141,187);
createdGroup.TabIndex = 17;
createdGroup.TabStop = false;
createdGroup.Text = "Created Roles";
//
// m_CreatedRolesListView
//
this.m_CreatedRolesListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
createdUsersHeader});
this.m_CreatedRolesListView.FullRowSelect = true;
this.m_CreatedRolesListView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
this.m_CreatedRolesListView.Location = new System.Drawing.Point(7,16);
this.m_CreatedRolesListView.MultiSelect = false;
this.m_CreatedRolesListView.Name = "m_CreatedRolesListView";
this.m_CreatedRolesListView.ShowGroups = false;
this.m_CreatedRolesListView.Size = new System.Drawing.Size(125,165);
this.m_CreatedRolesListView.Sorting = System.Windows.Forms.SortOrder.Ascending;
this.m_CreatedRolesListView.TabIndex = 0;
this.m_CreatedRolesListView.UseCompatibleStateImageBehavior = false;
this.m_CreatedRolesListView.View = System.Windows.Forms.View.SmallIcon;
//
// createdUsersHeader
//
createdUsersHeader.Width = 300;
//
// m_RoleValidator
//
this.m_RoleValidator.ContainerControl = this;
//
// CreateRoleDialog
//
this.AcceptButton = createRoleButton;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F,13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = closeButton;
this.ClientSize = new System.Drawing.Size(248,279);
this.Controls.Add(createdGroup);
this.Controls.Add(newRoleGroup);
this.Controls.Add(closeButton);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "CreateRoleDialog";
this.ShowIcon = false;
this.Text = "New Role Dialog";
newRoleGroup.ResumeLayout(false);
newRoleGroup.PerformLayout();
createdGroup.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.m_RoleValidator)).EndInit();
this.ResumeLayout(false);
}
示例6: InitializeComponent
//.........这里部分代码省略.........
groupBox1.Controls.Add(this.formatText);
groupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
groupBox1.Location = new System.Drawing.Point(3, 195);
groupBox1.Name = "groupBox1";
groupBox1.Size = new System.Drawing.Size(556, 227);
groupBox1.TabIndex = 0;
groupBox1.TabStop = false;
groupBox1.Text = "Format";
//
// formatText
//
this.formatText.Dock = System.Windows.Forms.DockStyle.Fill;
this.formatText.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.formatText.Location = new System.Drawing.Point(3, 16);
this.formatText.Multiline = true;
this.formatText.Name = "formatText";
this.formatText.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.formatText.Size = new System.Drawing.Size(550, 208);
this.formatText.TabIndex = 0;
this.formatText.Text = "float4 asd; // blah blah\r\nfloat3 bar;";
this.formatText.KeyDown += new System.Windows.Forms.KeyEventHandler(this.formatText_KeyDown);
//
// helpText
//
this.helpText.AutoSize = true;
this.helpText.Location = new System.Drawing.Point(8, 8);
this.helpText.Margin = new System.Windows.Forms.Padding(8);
this.helpText.Name = "helpText";
this.helpText.Size = new System.Drawing.Size(517, 130);
this.helpText.TabIndex = 1;
this.helpText.Text = resources.GetString("helpText.Text");
//
// tableLayoutPanel1
//
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(groupBox1, 0, 2);
this.tableLayoutPanel1.Controls.Add(this.helpText, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.errors, 0, 1);
this.tableLayoutPanel1.Controls.Add(this.apply, 1, 2);
this.tableLayoutPanel1.Controls.Add(this.hideHelp, 1, 0);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 3;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(643, 425);
this.tableLayoutPanel1.TabIndex = 0;
//
// errors
//
this.tableLayoutPanel1.SetColumnSpan(this.errors, 2);
this.errors.Dock = System.Windows.Forms.DockStyle.Fill;
this.errors.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.errors.ForeColor = System.Drawing.Color.DarkRed;
this.errors.Location = new System.Drawing.Point(3, 146);
this.errors.Name = "errors";
this.errors.Size = new System.Drawing.Size(637, 46);
this.errors.TabIndex = 3;
//
// apply
//
this.apply.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.apply.Location = new System.Drawing.Point(572, 394);
this.apply.Margin = new System.Windows.Forms.Padding(8);
this.apply.Name = "apply";
this.apply.Size = new System.Drawing.Size(63, 23);
this.apply.TabIndex = 1;
this.apply.Text = "Apply";
this.apply.UseVisualStyleBackColor = true;
this.apply.Click += new System.EventHandler(this.apply_Click);
//
// hideHelp
//
this.hideHelp.Location = new System.Drawing.Point(565, 3);
this.hideHelp.Name = "hideHelp";
this.hideHelp.Size = new System.Drawing.Size(75, 23);
this.hideHelp.TabIndex = 4;
this.hideHelp.Text = "Hide Help";
this.hideHelp.UseVisualStyleBackColor = true;
this.hideHelp.Click += new System.EventHandler(this.hideHelp_Click);
//
// BufferFormatSpecifier
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.tableLayoutPanel1);
this.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.Name = "BufferFormatSpecifier";
this.Size = new System.Drawing.Size(643, 425);
groupBox1.ResumeLayout(false);
groupBox1.PerformLayout();
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel1.PerformLayout();
this.ResumeLayout(false);
}
示例7: InitializeComponent
//.........这里部分代码省略.........
this.npcID.Location = new System.Drawing.Point(64, 122);
this.npcID.Name = "npcID";
this.npcID.Size = new System.Drawing.Size(121, 21);
this.npcID.TabIndex = 9;
this.npcID.SelectedIndexChanged += new System.EventHandler(this.npcID_SelectedIndexChanged);
//
// npcRemoveButton
//
this.npcRemoveButton.AutoSize = true;
this.npcRemoveButton.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.npcRemoveButton.Enabled = false;
this.npcRemoveButton.Location = new System.Drawing.Point(233, 120);
this.npcRemoveButton.Name = "npcRemoveButton";
this.npcRemoveButton.Size = new System.Drawing.Size(57, 23);
this.npcRemoveButton.TabIndex = 12;
this.npcRemoveButton.Text = "Remove";
this.npcRemoveButton.UseVisualStyleBackColor = true;
this.npcRemoveButton.Click += new System.EventHandler(this.npcRemoveButton_Click);
//
// npcAddButton
//
this.npcAddButton.AutoSize = true;
this.npcAddButton.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.npcAddButton.Location = new System.Drawing.Point(191, 120);
this.npcAddButton.Name = "npcAddButton";
this.npcAddButton.Size = new System.Drawing.Size(36, 23);
this.npcAddButton.TabIndex = 11;
this.npcAddButton.Text = "Add";
this.npcAddButton.UseVisualStyleBackColor = true;
this.npcAddButton.Click += new System.EventHandler(this.npcAddButton_Click);
//
// searchButton
//
this.searchButton.AutoSize = true;
this.searchButton.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.searchButton.Location = new System.Drawing.Point(174, 93);
this.searchButton.Name = "searchButton";
this.searchButton.Size = new System.Drawing.Size(61, 23);
this.searchButton.TabIndex = 13;
this.searchButton.Text = "Find Text";
this.searchButton.UseVisualStyleBackColor = true;
this.searchButton.Click += new System.EventHandler(this.searchButton_Click);
//
// voiceNum
//
this.voiceNum.Directory = null;
this.voiceNum.Enabled = false;
this.voiceNum.Extension = "wma";
this.voiceNum.Location = new System.Drawing.Point(94, 260);
this.voiceNum.Name = "voiceNum";
this.voiceNum.Size = new System.Drawing.Size(74, 23);
this.voiceNum.TabIndex = 4;
this.voiceNum.Title = "Voice File";
this.voiceNum.Value = "0000";
this.voiceNum.ValueChanged += new System.EventHandler(this.voiceNum_ValueChanged);
//
// MessageFileEditor
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(403, 636);
this.Controls.Add(this.searchButton);
this.Controls.Add(this.npcRemoveButton);
this.Controls.Add(this.npcAddButton);
this.Controls.Add(this.panel2);
this.Controls.Add(this.npcID);
this.Controls.Add(label4);
this.Controls.Add(this.saveButton);
this.Controls.Add(this.loadButton);
this.Controls.Add(this.language);
this.Controls.Add(this.character);
this.Controls.Add(this.field);
this.Controls.Add(label3);
this.Controls.Add(label2);
this.Controls.Add(label1);
this.Name = "MessageFileEditor";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.Text = "Message File Editor";
this.Load += new System.EventHandler(this.MessageFileEditor_Load);
groupBox1.ResumeLayout(false);
groupBox1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.eventFlag)).EndInit();
groupBox2.ResumeLayout(false);
groupBox2.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.npcFlag)).EndInit();
groupBox3.ResumeLayout(false);
groupBox3.PerformLayout();
groupBox4.ResumeLayout(false);
groupBox4.PerformLayout();
this.panel2.ResumeLayout(false);
this.panel2.PerformLayout();
this.panel3.ResumeLayout(false);
this.panel3.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.setEventNum)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.axWindowsMediaPlayer1)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
示例8: InitializeComponent
//.........这里部分代码省略.........
sensorGroupBox.Name = "sensorGroupBox";
sensorGroupBox.Size = new System.Drawing.Size(410, 262);
sensorGroupBox.TabIndex = 0;
sensorGroupBox.TabStop = false;
sensorGroupBox.Text = "Sensors";
//
// batteryVoltageLabel
//
this.batteryVoltageLabel.AutoSize = true;
this.batteryVoltageLabel.Location = new System.Drawing.Point(212, 214);
this.batteryVoltageLabel.Name = "batteryVoltageLabel";
this.batteryVoltageLabel.Size = new System.Drawing.Size(78, 13);
this.batteryVoltageLabel.TabIndex = 20;
this.batteryVoltageLabel.Text = "Battery voltage";
//
// orientationLabel
//
this.orientationLabel.AutoSize = true;
this.orientationLabel.Location = new System.Drawing.Point(6, 201);
this.orientationLabel.Name = "orientationLabel";
this.orientationLabel.Size = new System.Drawing.Size(58, 13);
this.orientationLabel.TabIndex = 19;
this.orientationLabel.Text = "Orientation";
//
// temperatureLabel
//
this.temperatureLabel.AutoSize = true;
this.temperatureLabel.Location = new System.Drawing.Point(211, 227);
this.temperatureLabel.Name = "temperatureLabel";
this.temperatureLabel.Size = new System.Drawing.Size(67, 13);
this.temperatureLabel.TabIndex = 18;
this.temperatureLabel.Text = "Temperature";
//
// accelerationLabel
//
this.accelerationLabel.AutoSize = true;
this.accelerationLabel.Location = new System.Drawing.Point(212, 201);
this.accelerationLabel.Name = "accelerationLabel";
this.accelerationLabel.Size = new System.Drawing.Size(66, 13);
this.accelerationLabel.TabIndex = 17;
this.accelerationLabel.Text = "Acceleration";
//
// calibrateGyroButton
//
this.calibrateGyroButton.Location = new System.Drawing.Point(186, 19);
this.calibrateGyroButton.Name = "calibrateGyroButton";
this.calibrateGyroButton.Size = new System.Drawing.Size(23, 23);
this.calibrateGyroButton.TabIndex = 15;
this.calibrateGyroButton.Text = "0";
this.calibrateGyroButton.UseVisualStyleBackColor = true;
this.calibrateGyroButton.Click += new System.EventHandler(this.calibrateGyroButton_Click);
//
// rotationLabel
//
this.rotationLabel.AutoSize = true;
this.rotationLabel.Location = new System.Drawing.Point(6, 214);
this.rotationLabel.Name = "rotationLabel";
this.rotationLabel.Size = new System.Drawing.Size(47, 13);
this.rotationLabel.TabIndex = 21;
this.rotationLabel.Text = "Rotation";
//
// headingIndicator
//
this.headingIndicator.CausesValidation = false;
this.headingIndicator.Location = new System.Drawing.Point(215, 18);
this.headingIndicator.Name = "headingIndicator";
this.headingIndicator.RotateAircraft = true;
this.headingIndicator.Size = new System.Drawing.Size(175, 175);
this.headingIndicator.TabIndex = 16;
this.headingIndicator.Text = "headingIndicatorInstrumentControl1";
//
// artificialHorizon
//
this.artificialHorizon.Location = new System.Drawing.Point(6, 19);
this.artificialHorizon.Name = "artificialHorizon";
this.artificialHorizon.Size = new System.Drawing.Size(175, 175);
this.artificialHorizon.TabIndex = 14;
this.artificialHorizon.Text = "attitudeIndicatorInstrumentControl1";
//
// magnetLabel
//
this.magnetLabel.AutoSize = true;
this.magnetLabel.Location = new System.Drawing.Point(6, 227);
this.magnetLabel.Name = "magnetLabel";
this.magnetLabel.Size = new System.Drawing.Size(43, 13);
this.magnetLabel.TabIndex = 22;
this.magnetLabel.Text = "Magnet";
//
// SensorControl
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(sensorGroupBox);
this.Name = "SensorControl";
this.Size = new System.Drawing.Size(410, 262);
sensorGroupBox.ResumeLayout(false);
sensorGroupBox.PerformLayout();
this.ResumeLayout(false);
}
示例9: InitializeComponent
//.........这里部分代码省略.........
this.picThumbnail.TabIndex = 6;
this.picThumbnail.TabStop = false;
this.picThumbnail.DoubleClick += new System.EventHandler(this.picThumbnail_DoubleClick);
//
// txtImageRDist
//
this.txtImageRDist.Location = new System.Drawing.Point(10, 116);
this.txtImageRDist.Name = "txtImageRDist";
this.txtImageRDist.ReadOnly = true;
this.txtImageRDist.Size = new System.Drawing.Size(126, 22);
this.txtImageRDist.TabIndex = 3;
//
// txtImageIndex
//
this.txtImageIndex.Location = new System.Drawing.Point(59, 53);
this.txtImageIndex.Name = "txtImageIndex";
this.txtImageIndex.ReadOnly = true;
this.txtImageIndex.Size = new System.Drawing.Size(77, 22);
this.txtImageIndex.TabIndex = 2;
//
// txtImagePath
//
this.txtImagePath.Location = new System.Drawing.Point(59, 21);
this.txtImagePath.Name = "txtImagePath";
this.txtImagePath.ReadOnly = true;
this.txtImagePath.Size = new System.Drawing.Size(468, 22);
this.txtImagePath.TabIndex = 1;
//
// label3
//
label3.AutoSize = true;
label3.Location = new System.Drawing.Point(7, 96);
label3.Name = "label3";
label3.Size = new System.Drawing.Size(144, 17);
label3.TabIndex = 2;
label3.Text = "Reachability Distance";
//
// label2
//
label2.AutoSize = true;
label2.Location = new System.Drawing.Point(12, 56);
label2.Name = "label2";
label2.Size = new System.Drawing.Size(41, 17);
label2.TabIndex = 1;
label2.Text = "Index";
//
// label1
//
label1.AutoSize = true;
label1.Location = new System.Drawing.Point(16, 21);
label1.Name = "label1";
label1.Size = new System.Drawing.Size(37, 17);
label1.TabIndex = 0;
label1.Text = "Path";
//
// statusStrip1
//
statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.lblConfigPath});
statusStrip1.Location = new System.Drawing.Point(0, 893);
statusStrip1.Name = "statusStrip1";
statusStrip1.Size = new System.Drawing.Size(1488, 25);
statusStrip1.TabIndex = 4;
statusStrip1.Text = "jo";
//
// lblConfigPath
//
this.lblConfigPath.Name = "lblConfigPath";
this.lblConfigPath.Size = new System.Drawing.Size(151, 20);
this.lblConfigPath.Text = "toolStripStatusLabel1";
//
// frmOPTICSAnalyzer
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1488, 918);
this.Controls.Add(statusStrip1);
this.Controls.Add(groupBox4);
this.Controls.Add(groupBox2);
this.Controls.Add(groupBox1);
this.Name = "frmOPTICSAnalyzer";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "OPTICSAnalyzer";
groupBox1.ResumeLayout(false);
groupBox2.ResumeLayout(false);
groupBox2.PerformLayout();
panel1.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.picHistogram)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.nudSelectionB)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.nudSelectionA)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.nudThreshold)).EndInit();
groupBox4.ResumeLayout(false);
groupBox4.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.picThumbnail)).EndInit();
statusStrip1.ResumeLayout(false);
statusStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
示例10: InitializeComponent
//.........这里部分代码省略.........
label1.AutoSize = true;
label1.Location = new System.Drawing.Point(7, 20);
label1.Name = "label1";
label1.Size = new System.Drawing.Size(43, 13);
label1.TabIndex = 0;
label1.Text = "Length:";
//
// btnPad1
//
this.btnPad1.Font = new System.Drawing.Font("Lucida Console", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnPad1.Location = new System.Drawing.Point(94, 114);
this.btnPad1.Name = "btnPad1";
this.btnPad1.Size = new System.Drawing.Size(75, 55);
this.btnPad1.TabIndex = 1;
this.btnPad1.Tag = 1;
this.btnPad1.Text = "B1";
this.btnPad1.UseVisualStyleBackColor = true;
this.btnPad1.Click += new System.EventHandler(this.btnPad_Click);
//
// btnPad2
//
this.btnPad2.Font = new System.Drawing.Font("Lucida Console", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnPad2.Location = new System.Drawing.Point(13, 175);
this.btnPad2.Name = "btnPad2";
this.btnPad2.Size = new System.Drawing.Size(75, 55);
this.btnPad2.TabIndex = 2;
this.btnPad2.Tag = 2;
this.btnPad2.Text = "B2";
this.btnPad2.UseVisualStyleBackColor = true;
this.btnPad2.Click += new System.EventHandler(this.btnPad_Click);
//
// btnPad4
//
this.btnPad4.Font = new System.Drawing.Font("Lucida Console", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnPad4.Location = new System.Drawing.Point(175, 175);
this.btnPad4.Name = "btnPad4";
this.btnPad4.Size = new System.Drawing.Size(75, 55);
this.btnPad4.TabIndex = 3;
this.btnPad4.Tag = 4;
this.btnPad4.Text = "B4";
this.btnPad4.UseVisualStyleBackColor = true;
this.btnPad4.Click += new System.EventHandler(this.btnPad_Click);
//
// btnPad5
//
this.btnPad5.Font = new System.Drawing.Font("Lucida Console", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnPad5.Location = new System.Drawing.Point(94, 236);
this.btnPad5.Name = "btnPad5";
this.btnPad5.Size = new System.Drawing.Size(75, 55);
this.btnPad5.TabIndex = 4;
this.btnPad5.Tag = 5;
this.btnPad5.Text = "B5";
this.btnPad5.UseVisualStyleBackColor = true;
this.btnPad5.Click += new System.EventHandler(this.btnPad_Click);
//
// btnPad3
//
this.btnPad3.Font = new System.Drawing.Font("Lucida Console", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnPad3.Location = new System.Drawing.Point(94, 175);
this.btnPad3.Name = "btnPad3";
this.btnPad3.Size = new System.Drawing.Size(75, 55);
this.btnPad3.TabIndex = 5;
this.btnPad3.Tag = 3;
this.btnPad3.Text = "B3";
this.btnPad3.UseVisualStyleBackColor = true;
this.btnPad3.Click += new System.EventHandler(this.btnPad_Click);
//
// btnJoin
//
this.btnJoin.Location = new System.Drawing.Point(278, 114);
this.btnJoin.Name = "btnJoin";
this.btnJoin.Size = new System.Drawing.Size(109, 23);
this.btnJoin.TabIndex = 6;
this.btnJoin.Text = "Join Game";
this.btnJoin.UseVisualStyleBackColor = true;
this.btnJoin.Click += new System.EventHandler(this.btnJoin_Click);
//
// GamePad
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(399, 301);
this.Controls.Add(this.btnJoin);
this.Controls.Add(this.btnPad3);
this.Controls.Add(this.btnPad5);
this.Controls.Add(this.btnPad4);
this.Controls.Add(this.btnPad2);
this.Controls.Add(this.btnPad1);
this.Controls.Add(groupBox1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Name = "GamePad";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.Text = "GamePad";
this.Load += new System.EventHandler(this.GamePad_Load);
groupBox1.ResumeLayout(false);
groupBox1.PerformLayout();
this.ResumeLayout(false);
}
示例11: InitializeComponent
//.........这里部分代码省略.........
this.gemStatusLabel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.gemStatusLabel.Name = "gemStatusLabel";
this.gemStatusLabel.Size = new System.Drawing.Size(104, 17);
this.gemStatusLabel.Text = "SECS GEM Status";
//
// splitContainer2
//
splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
splitContainer2.Location = new System.Drawing.Point(0, 0);
splitContainer2.Name = "splitContainer2";
//
// splitContainer2.Panel1
//
splitContainer2.Panel1.Controls.Add(this.listBoxSecsMessages);
//
// splitContainer2.Panel2
//
splitContainer2.Panel2.Controls.Add(groupBox1);
splitContainer2.Size = new System.Drawing.Size(150, 207);
splitContainer2.TabIndex = 0;
splitContainer2.TabStop = false;
//
// listBoxSecsMessages
//
this.listBoxSecsMessages.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.listBoxSecsMessages.Dock = System.Windows.Forms.DockStyle.Fill;
this.listBoxSecsMessages.ItemHeight = 12;
this.listBoxSecsMessages.Location = new System.Drawing.Point(0, 0);
this.listBoxSecsMessages.Name = "listBoxSecsMessages";
this.listBoxSecsMessages.Size = new System.Drawing.Size(50, 207);
this.listBoxSecsMessages.TabIndex = 1;
this.listBoxSecsMessages.SelectedIndexChanged += new System.EventHandler(this.listBoxSecsMessageList_SelectedIndexChanged);
//
// splitContainer1
//
this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
this.splitContainer1.IsSplitterFixed = true;
this.splitContainer1.Location = new System.Drawing.Point(0, 24);
this.splitContainer1.Name = "splitContainer1";
this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
//
// splitContainer1.Panel1
//
this.splitContainer1.Panel1.Controls.Add(splitContainer2);
this.splitContainer1.Panel1Collapsed = true;
//
// splitContainer1.Panel2
//
this.splitContainer1.Panel2.Controls.Add(this.rtxtScreen);
this.splitContainer1.Size = new System.Drawing.Size(642, 417);
this.splitContainer1.SplitterDistance = 207;
this.splitContainer1.TabIndex = 10;
//
// rtxtScreen
//
this.rtxtScreen.BackColor = System.Drawing.Color.White;
this.rtxtScreen.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.rtxtScreen.DetectUrls = false;
this.rtxtScreen.Dock = System.Windows.Forms.DockStyle.Fill;
this.rtxtScreen.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.rtxtScreen.Location = new System.Drawing.Point(0, 0);
this.rtxtScreen.MaxLength = 8192;
this.rtxtScreen.Name = "rtxtScreen";
this.rtxtScreen.ReadOnly = true;
this.rtxtScreen.ShortcutsEnabled = false;
this.rtxtScreen.Size = new System.Drawing.Size(642, 417);
this.rtxtScreen.TabIndex = 8;
this.rtxtScreen.TabStop = false;
this.rtxtScreen.Text = "";
this.rtxtScreen.WordWrap = false;
//
// HostMainForm
//
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
this.ClientSize = new System.Drawing.Size(642, 463);
this.Controls.Add(this.splitContainer1);
this.Controls.Add(statusbar);
this.Controls.Add(menu);
this.MainMenuStrip = menu;
this.Name = "HostMainForm";
this.Text = "MainForm";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
groupBox1.ResumeLayout(false);
groupBox1.PerformLayout();
menu.ResumeLayout(false);
menu.PerformLayout();
statusbar.ResumeLayout(false);
statusbar.PerformLayout();
splitContainer2.Panel1.ResumeLayout(false);
splitContainer2.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(splitContainer2)).EndInit();
splitContainer2.ResumeLayout(false);
this.splitContainer1.Panel1.ResumeLayout(false);
this.splitContainer1.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
this.splitContainer1.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
示例12: InitializeComponent
//.........这里部分代码省略.........
this.xSpinner.Name = "xSpinner";
this.xSpinner.Size = new System.Drawing.Size(45, 20);
this.xSpinner.TabIndex = 10;
this.xSpinner.Tag = "X";
this.xSpinner.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
//
// experienceLabel
//
this.experienceLabel.AutoSize = true;
this.experienceLabel.Location = new System.Drawing.Point(293, 163);
this.experienceLabel.Name = "experienceLabel";
this.experienceLabel.Size = new System.Drawing.Size(60, 13);
this.experienceLabel.TabIndex = 46;
this.experienceLabel.Text = "Experience";
//
// experienceComboBox
//
this.experienceComboBox.BackColor = System.Drawing.SystemColors.Window;
this.experienceComboBox.ForeColor = System.Drawing.SystemColors.WindowText;
this.experienceComboBox.FormattingEnabled = true;
this.experienceComboBox.Location = new System.Drawing.Point(366, 159);
this.experienceComboBox.Name = "experienceComboBox";
this.experienceComboBox.Size = new System.Drawing.Size(91, 21);
this.experienceComboBox.TabIndex = 47;
this.experienceComboBox.Tag = "Experience";
//
// EventUnitEditor
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoSize = true;
this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.Controls.Add(this.experienceComboBox);
this.Controls.Add(this.experienceLabel);
this.Controls.Add(this.unknownGroupBox);
this.Controls.Add(this.upperLevelCheckBox);
this.Controls.Add(spoilsGroupBox);
this.Controls.Add(teamColorLabel);
this.Controls.Add(this.teamColorComboBox);
this.Controls.Add(hLabel2);
this.Controls.Add(hLabel1);
this.Controls.Add(initialDirectionLabel);
this.Controls.Add(this.facingDirectionComboBox);
this.Controls.Add(this.levelComboBox);
this.Controls.Add(this.dayComboBox);
this.Controls.Add(this.faithComboBox);
this.Controls.Add(this.braveryComboBox);
this.Controls.Add(jobsUnlockedLabel);
this.Controls.Add(this.preRequisiteJobComboBox);
this.Controls.Add(unitIdLabel);
this.Controls.Add(this.flags2CheckedListBox);
this.Controls.Add(jobLabel);
this.Controls.Add(spriteSetLabel);
this.Controls.Add(this.spriteSetComboBox);
this.Controls.Add(braveryLabel);
this.Controls.Add(this.jobComboBox);
this.Controls.Add(faithLabel);
this.Controls.Add(this.unitIDSpinner);
this.Controls.Add(this.specialNameComboBox);
this.Controls.Add(birthdayLabel);
this.Controls.Add(aiGroupBox);
this.Controls.Add(this.flags1CheckedListBox);
this.Controls.Add(this.jobLevelSpinner);
this.Controls.Add(nameLabel);
this.Controls.Add(levelLabel);
this.Controls.Add(yLabel);
this.Controls.Add(paletteLabel);
this.Controls.Add(this.monthComboBox);
this.Controls.Add(equipmentGroupBox);
this.Controls.Add(xLabel);
this.Controls.Add(this.paletteSpinner);
this.Controls.Add(skillsGroupBox);
this.Controls.Add(this.ySpinner);
this.Controls.Add(this.xSpinner);
this.Name = "EventUnitEditor";
this.Size = new System.Drawing.Size(581, 511);
spoilsGroupBox.ResumeLayout(false);
spoilsGroupBox.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.bonusMoneySpinner)).EndInit();
aiGroupBox.ResumeLayout(false);
aiGroupBox.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.targetYSpinner)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.targetXSpinner)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.targetSpinner)).EndInit();
equipmentGroupBox.ResumeLayout(false);
equipmentGroupBox.PerformLayout();
skillsGroupBox.ResumeLayout(false);
skillsGroupBox.PerformLayout();
this.unknownGroupBox.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.unknown12Spinner)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.unknown10Spinner)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.unitIDSpinner)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.jobLevelSpinner)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.paletteSpinner)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.ySpinner)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.xSpinner)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
示例13: InitializeComponent
//.........这里部分代码省略.........
this.chtKernel.Dock = System.Windows.Forms.DockStyle.Fill;
this.chtKernel.Location = new System.Drawing.Point(3, 16);
this.chtKernel.Name = "chtKernel";
series1.ChartArea = "chaChart";
series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Area;
series1.Name = "dsKernelData";
this.chtKernel.Series.Add(series1);
this.chtKernel.Size = new System.Drawing.Size(288, 68);
this.chtKernel.TabIndex = 0;
this.chtKernel.Text = "chart1";
//
// gbActions
//
this.gbActions.AutoSize = true;
this.gbActions.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.gbActions.Controls.Add(flpActions);
this.gbActions.Dock = System.Windows.Forms.DockStyle.Top;
this.gbActions.Location = new System.Drawing.Point(0, 415);
this.gbActions.Name = "gbActions";
this.gbActions.Size = new System.Drawing.Size(294, 48);
this.gbActions.TabIndex = 4;
this.gbActions.TabStop = false;
this.gbActions.Text = "Actions";
//
// ofdOpenFile
//
this.ofdOpenFile.FileName = "InputImage";
this.ofdOpenFile.Filter = "Image Files|*.bmp;*.jpg;*.jpeg;*.png;*.gif";
this.ofdOpenFile.RestoreDirectory = true;
this.ofdOpenFile.Title = "Select Image to resize";
//
// sfdSave
//
this.sfdSave.DefaultExt = "png";
this.sfdSave.FileName = "OutputImage";
this.sfdSave.Filter = "Portable Network Graphics|*.png|JPEG Files|*.jpg;*.jpeg|Windows Bitmap|*.bmp|Grap" +
"hics Interchange Format|*.gif|Image Files|*.bmp;*.jpg;*.jpeg;*.png;*.gif";
this.sfdSave.RestoreDirectory = true;
this.sfdSave.Title = "Enter filename";
//
// ofdOpenScript
//
this.ofdOpenScript.DefaultExt = "irs";
this.ofdOpenScript.FileName = "InputScript";
this.ofdOpenScript.Filter = "Image Resizer Script Files|*.irs|All files|*.*";
this.ofdOpenScript.RestoreDirectory = true;
this.ofdOpenScript.Title = "Select script to load";
//
// sfdSaveScript
//
this.sfdSaveScript.DefaultExt = "irs";
this.sfdSaveScript.FileName = "OutputScript";
this.sfdSaveScript.Filter = "Image Resizer Script Files|*.irs|All files|*.*";
this.sfdSaveScript.RestoreDirectory = true;
this.sfdSaveScript.Title = "Enter filename";
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(889, 602);
this.Controls.Add(this.tlpMainLayout);
this.Controls.Add(ssBottom);
this.Controls.Add(this.msMain);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MainMenuStrip = this.msMain;
this.MinimumSize = new System.Drawing.Size(600, 600);
this.Name = "MainForm";
this.Text = "ImageResizer";
ssBottom.ResumeLayout(false);
ssBottom.PerformLayout();
gbSourceImage.ResumeLayout(false);
gbTargetImage.ResumeLayout(false);
flpActions.ResumeLayout(false);
gbAdvanced.ResumeLayout(false);
gbAdvanced.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.nudRadius)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.nudRepetitionCount)).EndInit();
gbBorderPixelHandling.ResumeLayout(false);
gbBorderPixelHandling.PerformLayout();
gbTargetResolution.ResumeLayout(false);
gbTargetResolution.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.nudWidth)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.nudHeight)).EndInit();
gbMethod.ResumeLayout(false);
gbDescription.ResumeLayout(false);
gbDescription.PerformLayout();
this.msMain.ResumeLayout(false);
this.msMain.PerformLayout();
this.tlpMainLayout.ResumeLayout(false);
this.pnMiddle.ResumeLayout(false);
this.pnMiddle.PerformLayout();
this.gbKernelFunction.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.chtKernel)).EndInit();
this.gbActions.ResumeLayout(false);
this.gbActions.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
示例14: InitializeComponent
//.........这里部分代码省略.........
this.lblTasiyiciFrekans.Size = new System.Drawing.Size(11, 13);
this.lblTasiyiciFrekans.TabIndex = 5;
this.lblTasiyiciFrekans.Text = "-";
//
// pbSinyalKalitesi
//
this.pbSinyalKalitesi.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.pbSinyalKalitesi.Location = new System.Drawing.Point(99, 45);
this.pbSinyalKalitesi.Name = "pbSinyalKalitesi";
this.pbSinyalKalitesi.Size = new System.Drawing.Size(293, 23);
this.pbSinyalKalitesi.TabIndex = 2;
//
// pbIlerleme
//
this.pbIlerleme.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.pbIlerleme.Location = new System.Drawing.Point(99, 15);
this.pbIlerleme.Name = "pbIlerleme";
this.pbIlerleme.Size = new System.Drawing.Size(293, 23);
this.pbIlerleme.TabIndex = 0;
//
// gbOgrenmeSonucu
//
this.gbOgrenmeSonucu.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.gbOgrenmeSonucu.Controls.Add(this.btnTest);
this.gbOgrenmeSonucu.Controls.Add(this.btnKoduSakla);
this.gbOgrenmeSonucu.Controls.Add(this.tbEylemAdi);
this.gbOgrenmeSonucu.Controls.Add(label8);
this.gbOgrenmeSonucu.Controls.Add(this.lblIRKodu);
this.gbOgrenmeSonucu.Controls.Add(label4);
this.gbOgrenmeSonucu.Enabled = false;
this.gbOgrenmeSonucu.Location = new System.Drawing.Point(13, 150);
this.gbOgrenmeSonucu.Name = "gbOgrenmeSonucu";
this.gbOgrenmeSonucu.Size = new System.Drawing.Size(441, 97);
this.gbOgrenmeSonucu.TabIndex = 1;
this.gbOgrenmeSonucu.TabStop = false;
this.gbOgrenmeSonucu.Text = "Öğrenme Sonucu";
//
// btnTest
//
this.btnTest.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnTest.Location = new System.Drawing.Point(279, 68);
this.btnTest.Name = "btnTest";
this.btnTest.Size = new System.Drawing.Size(75, 23);
this.btnTest.TabIndex = 7;
this.btnTest.Text = "&Test Et";
this.btnTest.UseVisualStyleBackColor = true;
this.btnTest.Click += new System.EventHandler(this.btnTest_Click);
//
// btnKoduSakla
//
this.btnKoduSakla.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnKoduSakla.Location = new System.Drawing.Point(360, 68);
this.btnKoduSakla.Name = "btnKoduSakla";
this.btnKoduSakla.Size = new System.Drawing.Size(75, 23);
this.btnKoduSakla.TabIndex = 6;
this.btnKoduSakla.Text = "&Sakla";
this.btnKoduSakla.UseVisualStyleBackColor = true;
this.btnKoduSakla.Click += new System.EventHandler(this.btnKoduSakla_Click);
//
// tbEylemAdi
//
this.tbEylemAdi.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.tbEylemAdi.Location = new System.Drawing.Point(99, 39);
this.tbEylemAdi.Name = "tbEylemAdi";
this.tbEylemAdi.Size = new System.Drawing.Size(336, 20);
this.tbEylemAdi.TabIndex = 5;
//
// lblIRKodu
//
this.lblIRKodu.AutoSize = true;
this.lblIRKodu.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
this.lblIRKodu.Location = new System.Drawing.Point(99, 20);
this.lblIRKodu.Name = "lblIRKodu";
this.lblIRKodu.Size = new System.Drawing.Size(11, 13);
this.lblIRKodu.TabIndex = 2;
this.lblIRKodu.Text = "-";
//
// AnaForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(466, 483);
this.Controls.Add(groupBox2);
this.Controls.Add(this.gbOgrenmeSonucu);
this.Controls.Add(this.groupBox1);
this.Name = "AnaForm";
this.Text = "IR Kod üretici";
groupBox2.ResumeLayout(false);
groupBox2.PerformLayout();
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.gbOgrenmeSonucu.ResumeLayout(false);
this.gbOgrenmeSonucu.PerformLayout();
this.ResumeLayout(false);
}
示例15: InitializeComponent
//.........这里部分代码省略.........
// splitContainer1.Panel2
//
this.splitContainer1.Panel2.Controls.Add(groupBox5);
this.splitContainer1.Panel2.Controls.Add(btnReplySecondary);
this.splitContainer1.Panel2.Controls.Add(groupBox3);
this.splitContainer1.Size = new System.Drawing.Size(945, 577);
this.splitContainer1.SplitterDistance = 449;
this.splitContainer1.TabIndex = 3;
//
// splitContainer2
//
this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
this.splitContainer2.Location = new System.Drawing.Point(0, 70);
this.splitContainer2.Name = "splitContainer2";
//
// splitContainer2.Panel1
//
this.splitContainer2.Panel1.Controls.Add(this.splitContainer1);
//
// splitContainer2.Panel2
//
this.splitContainer2.Panel2.Controls.Add(this.richTextBox1);
this.splitContainer2.Size = new System.Drawing.Size(1214, 577);
this.splitContainer2.SplitterDistance = 945;
this.splitContainer2.TabIndex = 11;
//
// richTextBox1
//
this.richTextBox1.Dock = System.Windows.Forms.DockStyle.Fill;
this.richTextBox1.Location = new System.Drawing.Point(0, 0);
this.richTextBox1.Name = "richTextBox1";
this.richTextBox1.ReadOnly = true;
this.richTextBox1.Size = new System.Drawing.Size(265, 577);
this.richTextBox1.TabIndex = 1;
this.richTextBox1.Text = "";
this.richTextBox1.WordWrap = false;
//
// numBufferSize
//
this.numBufferSize.Location = new System.Drawing.Point(535, 30);
this.numBufferSize.Maximum = new decimal(new int[] {
65535,
0,
0,
0});
this.numBufferSize.Name = "numBufferSize";
this.numBufferSize.Size = new System.Drawing.Size(77, 22);
this.numBufferSize.TabIndex = 11;
this.numBufferSize.Value = new decimal(new int[] {
65535,
0,
0,
0});
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(471, 35);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(58, 12);
this.label4.TabIndex = 12;
this.label4.Text = "Buffer Size";
//
// Form1
//
this.AcceptButton = this.btnEnable;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.btnDisable;
this.ClientSize = new System.Drawing.Size(1214, 647);
this.Controls.Add(this.splitContainer2);
this.Controls.Add(groupBox1);
this.Name = "Form1";
this.Text = "SECS Device";
this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
groupBox1.ResumeLayout(false);
groupBox1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.numDeviceId)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.numPort)).EndInit();
groupBox4.ResumeLayout(false);
groupBox4.PerformLayout();
groupBox2.ResumeLayout(false);
groupBox2.PerformLayout();
groupBox5.ResumeLayout(false);
groupBox5.PerformLayout();
groupBox3.ResumeLayout(false);
groupBox3.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.recvMessageBindingSource)).EndInit();
this.splitContainer1.Panel1.ResumeLayout(false);
this.splitContainer1.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
this.splitContainer1.ResumeLayout(false);
this.splitContainer2.Panel1.ResumeLayout(false);
this.splitContainer2.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
this.splitContainer2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.numBufferSize)).EndInit();
this.ResumeLayout(false);
}