本文整理汇总了C#中System.Windows.Forms.FlowLayoutPanel.ResumeLayout方法的典型用法代码示例。如果您正苦于以下问题:C# System.Windows.Forms.FlowLayoutPanel.ResumeLayout方法的具体用法?C# System.Windows.Forms.FlowLayoutPanel.ResumeLayout怎么用?C# System.Windows.Forms.FlowLayoutPanel.ResumeLayout使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Windows.Forms.FlowLayoutPanel
的用法示例。
在下文中一共展示了System.Windows.Forms.FlowLayoutPanel.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() {
this.components = new System.ComponentModel.Container();
System.Windows.Forms.Panel _pnlContent;
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ExternalsConfigurationComponentControl));
System.Windows.Forms.FlowLayoutPanel _pnlButtons;
this._listExternals = new System.Windows.Forms.ListView();
this.colLabel = new System.Windows.Forms.ColumnHeader();
this.colDescription = new System.Windows.Forms.ColumnHeader();
this._btnAdd = new System.Windows.Forms.Button();
this._btnRemove = new System.Windows.Forms.Button();
this._btnEdit = new System.Windows.Forms.Button();
this._mnuExternalTypes = new System.Windows.Forms.ContextMenuStrip(this.components);
_pnlContent = new System.Windows.Forms.Panel();
_pnlButtons = new System.Windows.Forms.FlowLayoutPanel();
_pnlContent.SuspendLayout();
_pnlButtons.SuspendLayout();
this.SuspendLayout();
//
// _pnlContent
//
_pnlContent.Controls.Add(this._listExternals);
_pnlContent.Controls.Add(_pnlButtons);
resources.ApplyResources(_pnlContent, "_pnlContent");
_pnlContent.Name = "_pnlContent";
//
// _listExternals
//
this._listExternals.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.colLabel,
this.colDescription});
resources.ApplyResources(this._listExternals, "_listExternals");
this._listExternals.FullRowSelect = true;
this._listExternals.GridLines = true;
this._listExternals.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
this._listExternals.HideSelection = false;
this._listExternals.LabelEdit = true;
this._listExternals.MultiSelect = false;
this._listExternals.Name = "_listExternals";
this._listExternals.UseCompatibleStateImageBehavior = false;
this._listExternals.View = System.Windows.Forms.View.Details;
this._listExternals.AfterLabelEdit += new System.Windows.Forms.LabelEditEventHandler(this._listExternals_AfterLabelEdit);
this._listExternals.SelectedIndexChanged += new System.EventHandler(this._listExternals_SelectedIndexChanged);
this._listExternals.DoubleClick += new System.EventHandler(this._listExternals_DoubleClick);
//
// colLabel
//
resources.ApplyResources(this.colLabel, "colLabel");
//
// colDescription
//
resources.ApplyResources(this.colDescription, "colDescription");
//
// _pnlButtons
//
_pnlButtons.Controls.Add(this._btnAdd);
_pnlButtons.Controls.Add(this._btnRemove);
_pnlButtons.Controls.Add(this._btnEdit);
resources.ApplyResources(_pnlButtons, "_pnlButtons");
_pnlButtons.Name = "_pnlButtons";
//
// _btnAdd
//
resources.ApplyResources(this._btnAdd, "_btnAdd");
this._btnAdd.Name = "_btnAdd";
this._btnAdd.UseVisualStyleBackColor = true;
this._btnAdd.Click += new System.EventHandler(this._btnAdd_Click);
//
// _btnRemove
//
resources.ApplyResources(this._btnRemove, "_btnRemove");
this._btnRemove.Name = "_btnRemove";
this._btnRemove.UseVisualStyleBackColor = true;
this._btnRemove.Click += new System.EventHandler(this._btnRemove_Click);
//
// _btnEdit
//
resources.ApplyResources(this._btnEdit, "_btnEdit");
this._btnEdit.Name = "_btnEdit";
this._btnEdit.UseVisualStyleBackColor = true;
this._btnEdit.Click += new System.EventHandler(this._btnEdit_Click);
//
// _mnuExternalTypes
//
this._mnuExternalTypes.Name = "_mnuExternalTypes";
resources.ApplyResources(this._mnuExternalTypes, "_mnuExternalTypes");
//
// ExternalsConfigurationComponentControl
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(_pnlContent);
this.Name = "ExternalsConfigurationComponentControl";
_pnlContent.ResumeLayout(false);
_pnlButtons.ResumeLayout(false);
this.ResumeLayout(false);
//.........这里部分代码省略.........
示例2: InitializeComponent
//.........这里部分代码省略.........
this.bcCredentialsGroupBox.TabIndex = 1;
this.bcCredentialsGroupBox.TabStop = false;
this.bcCredentialsGroupBox.Text = "BattleClinic API Credentials";
//
// battleClinicAPIControl
//
this.battleClinicAPIControl.Dock = System.Windows.Forms.DockStyle.Fill;
this.battleClinicAPIControl.Font = new System.Drawing.Font("Tahoma", 8.25F);
this.battleClinicAPIControl.Location = new System.Drawing.Point(3, 17);
this.battleClinicAPIControl.Name = "battleClinicAPIControl";
this.battleClinicAPIControl.Size = new System.Drawing.Size(416, 163);
this.battleClinicAPIControl.TabIndex = 0;
//
// SettingsForm
//
this.AcceptButton = this.okButton;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.BackColor = System.Drawing.SystemColors.Window;
this.CancelButton = this.cancelButton;
this.ClientSize = new System.Drawing.Size(644, 482);
this.Controls.Add(this.multiPanel);
this.Controls.Add(this.leftPanel);
this.Controls.Add(bottomPanel);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.MinimumSize = new System.Drawing.Size(400, 400);
this.Name = "SettingsForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "EVEMon Settings";
this.Load += new System.EventHandler(this.SettingsForm_Load);
bottomPanel.ResumeLayout(false);
groupBox15.ResumeLayout(false);
groupBox15.PerformLayout();
groupBox7.ResumeLayout(false);
groupBox7.PerformLayout();
systemTrayIconGroupBox.ResumeLayout(false);
systemTrayIconGroupBox.PerformLayout();
flowLayoutPanel28.ResumeLayout(false);
flowLayoutPanel28.PerformLayout();
gbSkillBrowserIconSet.ResumeLayout(false);
gbSkillBrowserIconSet.PerformLayout();
this.tableLayoutPanel4.ResumeLayout(false);
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel1.PerformLayout();
this.flowLayoutPanel9.ResumeLayout(false);
this.flowLayoutPanel9.PerformLayout();
this.leftPanel.ResumeLayout(false);
this.multiPanel.ResumeLayout(false);
this.mainWindowPage.ResumeLayout(false);
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.overviewPanel.ResumeLayout(false);
this.overviewPanel.PerformLayout();
this.generalPage.ResumeLayout(false);
this.generalPage.PerformLayout();
this.skillPlannerPage.ResumeLayout(false);
this.skillPlannerPage.PerformLayout();
this.networkPage.ResumeLayout(false);
this.ApiProxyGroupBox.ResumeLayout(false);
this.ProxyServerGroupBox.ResumeLayout(false);
this.ProxyServerGroupBox.PerformLayout();
this.customProxyPanel.ResumeLayout(false);
this.customProxyPanel.PerformLayout();
示例3: InitializeComponent
//.........这里部分代码省略.........
//
this.colorDialog.AnyColor = true;
//
// resolveSamples
//
this.resolveSamples.AutoSize = true;
flowLayoutPanel5.SetFlowBreak(this.resolveSamples, true);
this.resolveSamples.Location = new System.Drawing.Point(3, 26);
this.resolveSamples.Name = "resolveSamples";
this.resolveSamples.Size = new System.Drawing.Size(108, 17);
this.resolveSamples.TabIndex = 4;
this.resolveSamples.Text = "Resolve Samples";
this.resolveSamples.UseVisualStyleBackColor = true;
this.resolveSamples.CheckedChanged += new System.EventHandler(this.resolveSamples_CheckedChanged);
//
// groupBox2
//
groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
groupBox2.Controls.Add(this.filename);
groupBox2.Controls.Add(browse);
groupBox2.Location = new System.Drawing.Point(3, 3);
groupBox2.Name = "groupBox2";
groupBox2.Size = new System.Drawing.Size(369, 44);
groupBox2.TabIndex = 7;
groupBox2.TabStop = false;
groupBox2.Text = "Path";
//
// browse
//
browse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
browse.Location = new System.Drawing.Point(334, 15);
browse.Name = "browse";
browse.Size = new System.Drawing.Size(26, 23);
browse.TabIndex = 0;
browse.Text = "...";
browse.UseVisualStyleBackColor = true;
browse.Click += new System.EventHandler(this.browse_Click);
//
// filename
//
this.filename.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.filename.Location = new System.Drawing.Point(9, 15);
this.filename.Name = "filename";
this.filename.Size = new System.Drawing.Size(319, 20);
this.filename.TabIndex = 1;
//
// saveTexDialog
//
this.saveTexDialog.DefaultExt = "dds";
this.saveTexDialog.Title = "Save Texture As";
//
// TextureSaveDialog
//
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.ClientSize = new System.Drawing.Size(375, 521);
this.Controls.Add(tableLayoutPanel1);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "TextureSaveDialog";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Save Texture";
this.Shown += new System.EventHandler(this.TextureSaveDialog_Shown);
tableLayoutPanel1.ResumeLayout(false);
tableLayoutPanel1.PerformLayout();
groupBox1.ResumeLayout(false);
groupBox1.PerformLayout();
flowLayoutPanel1.ResumeLayout(false);
flowLayoutPanel1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.jpegCompression)).EndInit();
flowLayoutPanel2.ResumeLayout(false);
this.alphaLDRGroup.ResumeLayout(false);
this.alphaLDRGroup.PerformLayout();
flowLayoutPanel3.ResumeLayout(false);
flowLayoutPanel3.PerformLayout();
this.sliceGroup.ResumeLayout(false);
this.sliceGroup.PerformLayout();
flowLayoutPanel6.ResumeLayout(false);
flowLayoutPanel6.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.gridWidth)).EndInit();
this.mipGroup.ResumeLayout(false);
this.mipGroup.PerformLayout();
flowLayoutPanel4.ResumeLayout(false);
flowLayoutPanel4.PerformLayout();
this.sampleGroup.ResumeLayout(false);
this.sampleGroup.PerformLayout();
flowLayoutPanel5.ResumeLayout(false);
flowLayoutPanel5.PerformLayout();
groupBox2.ResumeLayout(false);
groupBox2.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
示例4: InitializeComponent
//.........这里部分代码省略.........
this.username.MaxLength = 255;
this.username.Name = "username";
this.username.Size = new System.Drawing.Size(100, 20);
this.username.TabIndex = 4;
//
// label2
//
label2.AutoSize = true;
label2.Location = new System.Drawing.Point(3, 41);
label2.Name = "label2";
label2.Size = new System.Drawing.Size(56, 13);
label2.TabIndex = 3;
label2.Text = "Password:";
//
// label1
//
label1.AutoSize = true;
label1.Location = new System.Drawing.Point(3, 13);
label1.Name = "label1";
label1.Size = new System.Drawing.Size(58, 13);
label1.TabIndex = 1;
label1.Text = "Username:";
//
// panel2
//
panel2.Controls.Add(this.register);
panel2.Controls.Add(this.login);
panel2.Location = new System.Drawing.Point(183, 453);
panel2.Name = "panel2";
panel2.Size = new System.Drawing.Size(99, 71);
panel2.TabIndex = 4;
//
// register
//
this.register.Location = new System.Drawing.Point(12, 38);
this.register.Name = "register";
this.register.Size = new System.Drawing.Size(75, 23);
this.register.TabIndex = 1;
this.register.Text = "Website";
this.register.UseVisualStyleBackColor = true;
this.register.Click += new System.EventHandler(this.register_Click);
//
// login
//
this.login.Location = new System.Drawing.Point(12, 10);
this.login.Name = "login";
this.login.Size = new System.Drawing.Size(75, 23);
this.login.TabIndex = 0;
this.login.Text = "Login";
this.login.UseVisualStyleBackColor = true;
this.login.Click += new System.EventHandler(this.login_Click);
//
// panel3
//
panel3.Controls.Add(this.info);
panel3.Location = new System.Drawing.Point(288, 453);
panel3.Name = "panel3";
panel3.Size = new System.Drawing.Size(465, 71);
panel3.TabIndex = 5;
//
// info
//
this.info.Location = new System.Drawing.Point(9, 12);
this.info.Name = "info";
this.info.Size = new System.Drawing.Size(451, 13);
this.info.TabIndex = 0;
this.info.Text = "__________________________________________________________________________";
this.info.Visible = false;
//
// timer
//
this.timer.Interval = 1000;
this.timer.Tick += new System.EventHandler(this.timer_Tick);
//
// Launcher
//
this.AcceptButton = this.login;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(794, 559);
this.Controls.Add(flowLayoutPanel1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MaximumSize = new System.Drawing.Size(800, 588);
this.MinimumSize = new System.Drawing.Size(800, 588);
this.Name = "Launcher";
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Accelerated Delivery";
flowLayoutPanel1.ResumeLayout(false);
flowLayoutPanel1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(pictureBox1)).EndInit();
panel1.ResumeLayout(false);
panel1.PerformLayout();
panel2.ResumeLayout(false);
panel3.ResumeLayout(false);
this.ResumeLayout(false);
}
示例5: InitializeComponent
//.........这里部分代码省略.........
_lytButtons.Name = "_lytButtons";
//
// _applyButton
//
resources.ApplyResources(this._applyButton, "_applyButton");
this._applyButton.Name = "_applyButton";
this._applyButton.Click += new System.EventHandler(this.BtnApplyClick);
//
// _cancelButton
//
resources.ApplyResources(this._cancelButton, "_cancelButton");
this._cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this._cancelButton.Name = "_cancelButton";
//
// _okButton
//
resources.ApplyResources(this._okButton, "_okButton");
this._okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
this._okButton.Name = "_okButton";
this._okButton.Click += new System.EventHandler(this.BtnOkClick);
//
// _forumListView
//
resources.ApplyResources(this._forumListView, "_forumListView");
this._forumListView.CheckBoxes = true;
this._forumListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this._typeColumnHeader,
this._forumColumnHeader,
this._descriptionColumnHeader});
this._forumListView.FullRowSelect = true;
this._forumListView.GridLines = true;
this._forumListView.HideSelection = false;
this._forumListView.Name = "_forumListView";
this._forumListView.SmallImageList = this._formImages;
this._forumListView.UseCompatibleStateImageBehavior = false;
this._forumListView.View = System.Windows.Forms.View.Details;
this._forumListView.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.ForumListViewColumnClick);
this._forumListView.SelectedIndexChanged += new System.EventHandler(this.ForumListViewSelectedIndexChanged);
//
// _typeColumnHeader
//
resources.ApplyResources(this._typeColumnHeader, "_typeColumnHeader");
//
// _forumColumnHeader
//
resources.ApplyResources(this._forumColumnHeader, "_forumColumnHeader");
//
// _descriptionColumnHeader
//
resources.ApplyResources(this._descriptionColumnHeader, "_descriptionColumnHeader");
//
// _formImages
//
this._formImages.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("_formImages.ImageStream")));
this._formImages.TransparentColor = System.Drawing.Color.Transparent;
this._formImages.Images.SetKeyName(0, "");
this._formImages.Images.SetKeyName(1, "");
//
// _messageLabel
//
resources.ApplyResources(this._messageLabel, "_messageLabel");
this._messageLabel.Name = "_messageLabel";
//
// _syncForumsButton
//
resources.ApplyResources(this._syncForumsButton, "_syncForumsButton");
this._syncForumsButton.Name = "_syncForumsButton";
this._syncForumsButton.Click += new System.EventHandler(this.BtnSyncForumsClick);
//
// _priority
//
resources.ApplyResources(this._priority, "_priority");
this._priority.Maximum = new decimal(new int[] {
9,
0,
0,
0});
this._priority.Name = "_priority";
this._priority.ValueChanged += new System.EventHandler(this.PriorityValueChanged);
//
// SubscribeForm
//
this.AcceptButton = this._okButton;
resources.ApplyResources(this, "$this");
this.CancelButton = this._cancelButton;
this.Controls.Add(_lytButtons);
this.Controls.Add(this._priority);
this.Controls.Add(this._syncForumsButton);
this.Controls.Add(this._messageLabel);
this.Controls.Add(this._forumListView);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "SubscribeForm";
this.ShowInTaskbar = false;
_lytButtons.ResumeLayout(false);
_lytButtons.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this._priority)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
示例6: InitializeComponent
//.........这里部分代码省略.........
this.lblTitle.Location = new System.Drawing.Point(3, 0);
this.lblTitle.Name = "lblTitle";
this.lblTitle.Size = new System.Drawing.Size(51, 13);
this.lblTitle.TabIndex = 0;
this.lblTitle.Text = "Song title";
//
// label3
//
label3.AutoSize = true;
label3.Location = new System.Drawing.Point(60, 0);
label3.Name = "label3";
label3.Size = new System.Drawing.Size(18, 13);
label3.TabIndex = 1;
label3.Text = "by";
//
// lblArtist
//
this.lblArtist.AutoSize = true;
this.lblArtist.Location = new System.Drawing.Point(84, 0);
this.lblArtist.Name = "lblArtist";
this.lblArtist.Size = new System.Drawing.Size(57, 13);
this.lblArtist.TabIndex = 2;
this.lblArtist.Text = "Song artist";
//
// label5
//
label5.AutoSize = true;
label5.Location = new System.Drawing.Point(147, 0);
label5.Name = "label5";
label5.Size = new System.Drawing.Size(27, 13);
label5.TabIndex = 3;
label5.Text = "from";
//
// lblAlbum
//
this.lblAlbum.AutoSize = true;
this.lblAlbum.Location = new System.Drawing.Point(180, 0);
this.lblAlbum.Name = "lblAlbum";
this.lblAlbum.Size = new System.Drawing.Size(63, 13);
this.lblAlbum.TabIndex = 4;
this.lblAlbum.Text = "Song album";
//
// pnlScroll
//
this.pnlScroll.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.pnlScroll.AutoScroll = true;
this.pnlScroll.Controls.Add(this.lblLyrics);
this.pnlScroll.Location = new System.Drawing.Point(0, 19);
this.pnlScroll.Name = "pnlScroll";
this.pnlScroll.Size = new System.Drawing.Size(375, 372);
this.pnlScroll.TabIndex = 4;
this.pnlScroll.MouseDown += new System.Windows.Forms.MouseEventHandler(this.lblLyrics_MouseDown);
this.pnlScroll.MouseMove += new System.Windows.Forms.MouseEventHandler(this.lblLyrics_MouseMove);
this.pnlScroll.MouseUp += new System.Windows.Forms.MouseEventHandler(this.lblLyrics_MouseUp);
//
// lblLyrics
//
this.lblLyrics.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.lblLyrics.AutoSize = true;
this.lblLyrics.Location = new System.Drawing.Point(8, 8);
this.lblLyrics.Name = "lblLyrics";
this.lblLyrics.Size = new System.Drawing.Size(0, 13);
this.lblLyrics.TabIndex = 5;
this.lblLyrics.MouseDown += new System.Windows.Forms.MouseEventHandler(this.lblLyrics_MouseDown);
this.lblLyrics.MouseMove += new System.Windows.Forms.MouseEventHandler(this.lblLyrics_MouseMove);
this.lblLyrics.MouseUp += new System.Windows.Forms.MouseEventHandler(this.lblLyrics_MouseUp);
//
// pbAlbumArt
//
this.pbAlbumArt.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Right)));
this.pbAlbumArt.Location = new System.Drawing.Point(381, 19);
this.pbAlbumArt.Name = "pbAlbumArt";
this.pbAlbumArt.Size = new System.Drawing.Size(395, 372);
this.pbAlbumArt.TabIndex = 5;
this.pbAlbumArt.TabStop = false;
//
// DisplayForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(776, 393);
this.Controls.Add(this.pbAlbumArt);
this.Controls.Add(this.pnlScroll);
this.Controls.Add(flowLayoutPanel1);
this.Name = "DisplayForm";
this.Text = "DisplayForm";
flowLayoutPanel1.ResumeLayout(false);
flowLayoutPanel1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
this.pnlScroll.ResumeLayout(false);
this.pnlScroll.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pbAlbumArt)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
示例7: InitializeComponent
//.........这里部分代码省略.........
resources.ApplyResources(this.itemContextMenu, "itemContextMenu");
this.itemContextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.cutCM,
this.copyCM,
this.pasteCM,
contextSep1,
this.swap,
this.deleteCM});
this.itemContextMenu.Name = "itemContextMenu";
//
// cutCM
//
resources.ApplyResources(this.cutCM, "cutCM");
this.cutCM.Name = "cutCM";
//
// copyCM
//
resources.ApplyResources(this.copyCM, "copyCM");
this.copyCM.Name = "copyCM";
//
// pasteCM
//
resources.ApplyResources(this.pasteCM, "pasteCM");
this.pasteCM.Name = "pasteCM";
//
// swap
//
resources.ApplyResources(this.swap, "swap");
this.swap.Name = "swap";
//
// deleteCM
//
resources.ApplyResources(this.deleteCM, "deleteCM");
this.deleteCM.Name = "deleteCM";
//
// saveFileDialog
//
resources.ApplyResources(this.saveFileDialog, "saveFileDialog");
//
// meta
//
resources.ApplyResources(this.meta, "meta");
this.meta.Controls.Add(metaFlow);
this.meta.Controls.Add(this.shadow);
this.meta.Controls.Add(this.icon);
this.meta.Name = "meta";
//
// shadow
//
resources.ApplyResources(this.shadow, "shadow");
this.shadow.Cursor = System.Windows.Forms.Cursors.SizeNS;
this.shadow.Image = global::Szotar.WindowsForms.Properties.Resources.TopInwardShadow;
this.shadow.Name = "shadow";
this.shadow.TabStop = false;
//
// icon
//
resources.ApplyResources(this.icon, "icon");
this.icon.Image = global::Szotar.WindowsForms.Properties.Resources.GenericDocument96;
this.icon.Name = "icon";
this.icon.TabStop = false;
//
// grid
//
resources.ApplyResources(this.grid, "grid");
this.grid.AllowNewItems = true;
this.grid.ColumnRatio = 0.5F;
this.grid.DataSource = null;
this.grid.ItemContextMenu = this.itemContextMenu;
this.grid.Name = "grid";
this.grid.ShowMutableRows = false;
//
// ListBuilder
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.grid);
this.Controls.Add(this.meta);
this.Controls.Add(this.mainMenu);
this.Name = "ListBuilder";
metaFlow.ResumeLayout(false);
metaFlow.PerformLayout();
this.namePanel.ResumeLayout(false);
this.namePanel.PerformLayout();
this.authorPanel.ResumeLayout(false);
this.authorPanel.PerformLayout();
this.urlPanel.ResumeLayout(false);
this.urlPanel.PerformLayout();
this.entriesPanel.ResumeLayout(false);
this.entriesPanel.PerformLayout();
this.mainMenu.ResumeLayout(false);
this.mainMenu.PerformLayout();
this.itemContextMenu.ResumeLayout(false);
this.meta.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.shadow)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.icon)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
示例8: InitializeComponent
//.........这里部分代码省略.........
// label1
//
label1.AutoSize = true;
label1.Location = new System.Drawing.Point(0, 0);
label1.Margin = new System.Windows.Forms.Padding(0, 0, 3, 0);
label1.Name = "label1";
label1.Size = new System.Drawing.Size(72, 15);
label1.TabIndex = 0;
label1.Text = "&Namespace:";
//
// headerCheckBox
//
headerCheckBox.AutoSize = true;
headerCheckBox.Checked = global::ToolStripCustomizer.Properties.Settings.Default.IncludeHeader;
headerCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
headerCheckBox.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::ToolStripCustomizer.Properties.Settings.Default, "IncludeHeader", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
headerCheckBox.Location = new System.Drawing.Point(3, 51);
headerCheckBox.Margin = new System.Windows.Forms.Padding(3, 7, 3, 3);
headerCheckBox.Name = "headerCheckBox";
headerCheckBox.Size = new System.Drawing.Size(196, 19);
headerCheckBox.TabIndex = 4;
headerCheckBox.Text = "Print <auto-generated/> header";
headerCheckBox.UseVisualStyleBackColor = true;
//
// namespaceTextBox
//
this.namespaceTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.namespaceTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::ToolStripCustomizer.Properties.Settings.Default, "DefaultNamespace", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.namespaceTextBox.Location = new System.Drawing.Point(3, 18);
this.namespaceTextBox.Name = "namespaceTextBox";
this.namespaceTextBox.Size = new System.Drawing.Size(244, 23);
this.namespaceTextBox.TabIndex = 1;
this.namespaceTextBox.Text = global::ToolStripCustomizer.Properties.Settings.Default.DefaultNamespace;
//
// cancelButton
//
cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
cancelButton.FlatStyle = System.Windows.Forms.FlatStyle.System;
cancelButton.Location = new System.Drawing.Point(206, 8);
cancelButton.Name = "cancelButton";
cancelButton.Size = new System.Drawing.Size(75, 23);
cancelButton.TabIndex = 2;
cancelButton.Text = "Cancel";
cancelButton.UseVisualStyleBackColor = true;
//
// okButton
//
okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
okButton.FlatStyle = System.Windows.Forms.FlatStyle.System;
okButton.Location = new System.Drawing.Point(125, 8);
okButton.Name = "okButton";
okButton.Size = new System.Drawing.Size(75, 23);
okButton.TabIndex = 1;
okButton.Text = "OK";
okButton.UseVisualStyleBackColor = true;
//
// flowLayoutPanel1
//
flowLayoutPanel1.AutoSize = true;
flowLayoutPanel1.Controls.Add(cancelButton);
flowLayoutPanel1.Controls.Add(okButton);
flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Bottom;
flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
flowLayoutPanel1.Location = new System.Drawing.Point(5, 313);
flowLayoutPanel1.Name = "flowLayoutPanel1";
flowLayoutPanel1.Padding = new System.Windows.Forms.Padding(0, 5, 0, 0);
flowLayoutPanel1.Size = new System.Drawing.Size(284, 34);
flowLayoutPanel1.TabIndex = 3;
//
// OptionsForm
//
this.AcceptButton = okButton;
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.CancelButton = cancelButton;
this.ClientSize = new System.Drawing.Size(294, 352);
this.Controls.Add(tabControl1);
this.Controls.Add(flowLayoutPanel1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "OptionsForm";
this.Padding = new System.Windows.Forms.Padding(5);
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Options";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.OptionsFormFormClosing);
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.OptionsFormFormClosed);
tabControl1.ResumeLayout(false);
tabPage1.ResumeLayout(false);
tabPage1.PerformLayout();
groupBox1.ResumeLayout(false);
groupBox1.PerformLayout();
tableLayoutPanel1.ResumeLayout(false);
tableLayoutPanel1.PerformLayout();
flowLayoutPanel1.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
示例9: 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.TableLayoutPanel table;
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LogViewer));
System.Windows.Forms.FlowLayoutPanel checkboxes;
System.Windows.Forms.ColumnHeader columnHeader1;
System.Windows.Forms.ColumnHeader columnHeader2;
System.Windows.Forms.ColumnHeader columnHeader3;
this.metrics = new System.Windows.Forms.CheckBox();
this.debug = new System.Windows.Forms.CheckBox();
this.warning = new System.Windows.Forms.CheckBox();
this.error = new System.Windows.Forms.CheckBox();
this.list = new Szotar.WindowsForms.Controls.ListViewNF();
table = new System.Windows.Forms.TableLayoutPanel();
checkboxes = new System.Windows.Forms.FlowLayoutPanel();
columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
table.SuspendLayout();
checkboxes.SuspendLayout();
this.SuspendLayout();
//
// table
//
resources.ApplyResources(table, "table");
table.Controls.Add(checkboxes, 0, 0);
table.Controls.Add(this.list, 0, 1);
table.Name = "table";
//
// checkboxes
//
resources.ApplyResources(checkboxes, "checkboxes");
checkboxes.Controls.Add(this.metrics);
checkboxes.Controls.Add(this.debug);
checkboxes.Controls.Add(this.warning);
checkboxes.Controls.Add(this.error);
checkboxes.Name = "checkboxes";
//
// metrics
//
resources.ApplyResources(this.metrics, "metrics");
this.metrics.Name = "metrics";
this.metrics.UseVisualStyleBackColor = true;
//
// debug
//
resources.ApplyResources(this.debug, "debug");
this.debug.Name = "debug";
this.debug.UseVisualStyleBackColor = true;
//
// warning
//
resources.ApplyResources(this.warning, "warning");
this.warning.Name = "warning";
this.warning.UseVisualStyleBackColor = true;
//
// error
//
resources.ApplyResources(this.error, "error");
this.error.Name = "error";
this.error.UseVisualStyleBackColor = true;
//
// list
//
resources.ApplyResources(this.list, "list");
this.list.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
columnHeader1,
columnHeader2,
columnHeader3});
this.list.Name = "list";
this.list.UseCompatibleStateImageBehavior = false;
this.list.View = System.Windows.Forms.View.Details;
//
// columnHeader1
//
resources.ApplyResources(columnHeader1, "columnHeader1");
//
// columnHeader2
//
resources.ApplyResources(columnHeader2, "columnHeader2");
//
// columnHeader3
//
resources.ApplyResources(columnHeader3, "columnHeader3");
//
// LogViewer
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(table);
this.Name = "LogViewer";
table.ResumeLayout(false);
table.PerformLayout();
checkboxes.ResumeLayout(false);
checkboxes.PerformLayout();
this.ResumeLayout(false);
//.........这里部分代码省略.........
示例10: InitializeComponent
//.........这里部分代码省略.........
//
// EachItemOddGroup
//
EachItemOddGroup.Controls.Add(this.TextEachItemAlternate);
resources.ApplyResources(EachItemOddGroup, "EachItemOddGroup");
EachItemOddGroup.Name = "EachItemOddGroup";
EachItemOddGroup.TabStop = false;
//
// TextEachItemAlternate
//
this.TextEachItemAlternate.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.outputFormatBindingSource, "EachItemAlternate", true));
resources.ApplyResources(this.TextEachItemAlternate, "TextEachItemAlternate");
this.TextEachItemAlternate.Name = "TextEachItemAlternate";
//
// FooterGroup
//
FooterGroup.Controls.Add(this.TextFooter);
resources.ApplyResources(FooterGroup, "FooterGroup");
FooterGroup.Name = "FooterGroup";
FooterGroup.TabStop = false;
//
// TextFooter
//
this.TextFooter.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.outputFormatBindingSource, "Footer", true));
resources.ApplyResources(this.TextFooter, "TextFooter");
this.TextFooter.Name = "TextFooter";
//
// panel1
//
this.panel1.Controls.Add(OkCancelButtonPanel);
resources.ApplyResources(this.panel1, "panel1");
this.panel1.Name = "panel1";
//
// ContantSplitPane
//
resources.ApplyResources(this.ContantSplitPane, "ContantSplitPane");
this.ContantSplitPane.Name = "ContantSplitPane";
//
// ContantSplitPane.Panel1
//
this.ContantSplitPane.Panel1.Controls.Add(FormatLayout);
//
// ContantSplitPane.Panel2
//
this.ContantSplitPane.Panel2.Controls.Add(this.VariableItemList);
this.ContantSplitPane.Panel2.Controls.Add(this.BtnInsertVariable);
//
// VariableItemList
//
resources.ApplyResources(this.VariableItemList, "VariableItemList");
this.VariableItemList.FormattingEnabled = true;
this.VariableItemList.Name = "VariableItemList";
//
// BtnInsertVariable
//
resources.ApplyResources(this.BtnInsertVariable, "BtnInsertVariable");
this.BtnInsertVariable.Name = "BtnInsertVariable";
this.BtnInsertVariable.UseVisualStyleBackColor = true;
//
// outputFormatBindingSource
//
this.outputFormatBindingSource.DataSource = typeof(EnumFiles.Model.OutputFormat);
//
// OutputFormatForm
//
this.AcceptButton = this.BtnOK;
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.BtnCancel;
this.ControlBox = false;
this.Controls.Add(this.ContantSplitPane);
this.Controls.Add(this.panel1);
this.Controls.Add(FormatNamePanel);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "OutputFormatForm";
this.Load += new System.EventHandler(this.OutputFormatForm_Load);
FormatNamePanel.ResumeLayout(false);
FormatNamePanel.PerformLayout();
ButtonPanel.ResumeLayout(false);
OkCancelButtonPanel.ResumeLayout(false);
OkCancelButtonPanel.PerformLayout();
FormatLayout.ResumeLayout(false);
HeaderGroup.ResumeLayout(false);
HeaderGroup.PerformLayout();
EachItemGroup.ResumeLayout(false);
EachItemGroup.PerformLayout();
EachItemOddGroup.ResumeLayout(false);
EachItemOddGroup.PerformLayout();
FooterGroup.ResumeLayout(false);
FooterGroup.PerformLayout();
this.panel1.ResumeLayout(false);
this.ContantSplitPane.Panel1.ResumeLayout(false);
this.ContantSplitPane.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.ContantSplitPane)).EndInit();
this.ContantSplitPane.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.outputFormatBindingSource)).EndInit();
this.ResumeLayout(false);
}
示例11: InitializeComponent
//.........这里部分代码省略.........
flowLayoutPanel2.Name = "flowLayoutPanel2";
flowLayoutPanel2.Size = new System.Drawing.Size(150, 566);
flowLayoutPanel2.TabIndex = 5;
//
// button1
//
this.button1.Enabled = false;
flowLayoutPanel2.SetFlowBreak(this.button1, true);
this.button1.Location = new System.Drawing.Point(3, 96);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(142, 23);
this.button1.TabIndex = 0;
this.button1.Text = "Delete!";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.DeleteFilesClicked);
//
// button6
//
this.button6.Enabled = false;
flowLayoutPanel2.SetFlowBreak(this.button6, true);
this.button6.Location = new System.Drawing.Point(3, 176);
this.button6.Name = "button6";
this.button6.Size = new System.Drawing.Size(142, 23);
this.button6.TabIndex = 11;
this.button6.Text = "Restore deleted files";
this.button6.UseVisualStyleBackColor = true;
this.button6.Click += new System.EventHandler(this.ValidateClicked);
//
// ErrorsLabel
//
this.ErrorsLabel.AutoSize = true;
this.ErrorsLabel.Location = new System.Drawing.Point(3, 202);
this.ErrorsLabel.Name = "ErrorsLabel";
this.ErrorsLabel.Size = new System.Drawing.Size(143, 39);
this.ErrorsLabel.TabIndex = 14;
this.ErrorsLabel.Text = "Errors were encountered when loading information for some games.";
this.ErrorsLabel.Visible = false;
//
// ErrorsButton
//
flowLayoutPanel2.SetFlowBreak(this.ErrorsButton, true);
this.ErrorsButton.Location = new System.Drawing.Point(3, 244);
this.ErrorsButton.Name = "ErrorsButton";
this.ErrorsButton.Size = new System.Drawing.Size(142, 23);
this.ErrorsButton.TabIndex = 16;
this.ErrorsButton.Text = "Show errors";
this.ErrorsButton.UseVisualStyleBackColor = true;
this.ErrorsButton.Visible = false;
this.ErrorsButton.Click += new System.EventHandler(this.ErrorsButton_Click);
//
// columnHeader6
//
columnHeader6.Text = "Saved";
columnHeader6.Width = 85;
//
// listView1
//
this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
columnHeader1,
columnHeader2,
columnHeader3,
columnHeader4,
columnHeader5,
columnHeader6});
this.listView1.Dock = System.Windows.Forms.DockStyle.Fill;
this.listView1.FullRowSelect = true;
this.listView1.HideSelection = false;
this.listView1.Location = new System.Drawing.Point(0, 0);
this.listView1.MultiSelect = false;
this.listView1.Name = "listView1";
this.listView1.Size = new System.Drawing.Size(636, 566);
this.listView1.Sorting = System.Windows.Forms.SortOrder.Descending;
this.listView1.TabIndex = 4;
this.listView1.UseCompatibleStateImageBehavior = false;
this.listView1.View = System.Windows.Forms.View.Details;
this.listView1.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.HeaderClicked);
this.listView1.SelectedIndexChanged += new System.EventHandler(this.ItemSelected);
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(786, 566);
this.Controls.Add(this.listView1);
this.Controls.Add(flowLayoutPanel2);
this.Controls.Add(flowLayoutPanel1);
this.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.Name = "MainForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Steam Disk Saver";
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.MainForm_FormClosed);
this.Load += new System.EventHandler(this.MainForm_Load);
flowLayoutPanel2.ResumeLayout(false);
flowLayoutPanel2.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
示例12: InitializeComponent
//.........这里部分代码省略.........
//
this.statusLabel.Name = "statusLabel";
this.statusLabel.Size = new System.Drawing.Size(135, 17);
this.statusLabel.Text = "<StarCraftBot9K Status>";
//
// splitContainer1
//
this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
this.splitContainer1.Location = new System.Drawing.Point(0, 0);
this.splitContainer1.Name = "splitContainer1";
//
// splitContainer1.Panel1
//
this.splitContainer1.Panel1.Controls.Add(this.tableLayoutPanel1);
//
// splitContainer1.Panel2
//
this.splitContainer1.Panel2.Controls.Add(this.gameStateControl);
this.splitContainer1.Size = new System.Drawing.Size(714, 439);
this.splitContainer1.SplitterDistance = 238;
this.splitContainer1.TabIndex = 7;
//
// gameStateControl
//
this.gameStateControl.BackColor = System.Drawing.SystemColors.ControlDarkDark;
this.gameStateControl.Dock = System.Windows.Forms.DockStyle.Top;
this.gameStateControl.Location = new System.Drawing.Point(0, 0);
this.gameStateControl.Name = "gameStateControl";
this.gameStateControl.Size = new System.Drawing.Size(472, 439);
this.gameStateControl.TabIndex = 0;
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.ColumnCount = 1;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel1.Controls.Add(this.unitSummaryTree1, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.cbEnableEconomyAI, 0, 2);
this.tableLayoutPanel1.Controls.Add(flowLayoutPanel1, 0, 1);
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(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 55F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(238, 439);
this.tableLayoutPanel1.TabIndex = 1;
//
// btnIssueCommand
//
this.btnIssueCommand.Location = new System.Drawing.Point(3, 3);
this.btnIssueCommand.Name = "btnIssueCommand";
this.btnIssueCommand.Size = new System.Drawing.Size(75, 23);
this.btnIssueCommand.TabIndex = 0;
this.btnIssueCommand.Text = "Send Cmd";
this.btnIssueCommand.UseVisualStyleBackColor = true;
this.btnIssueCommand.Click += new System.EventHandler(this.btnIssueCommand_Click);
//
// flowLayoutPanel1
//
flowLayoutPanel1.Controls.Add(this.btnIssueCommand);
flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
flowLayoutPanel1.Location = new System.Drawing.Point(3, 362);
flowLayoutPanel1.Name = "flowLayoutPanel1";
flowLayoutPanel1.Size = new System.Drawing.Size(232, 49);
flowLayoutPanel1.TabIndex = 0;
//
// cbEnableEconomyAI
//
this.cbEnableEconomyAI.AutoSize = true;
this.cbEnableEconomyAI.Location = new System.Drawing.Point(3, 417);
this.cbEnableEconomyAI.Name = "cbEnableEconomyAI";
this.cbEnableEconomyAI.Size = new System.Drawing.Size(121, 17);
this.cbEnableEconomyAI.TabIndex = 1;
this.cbEnableEconomyAI.Text = "Economy AI Module";
this.cbEnableEconomyAI.UseVisualStyleBackColor = true;
this.cbEnableEconomyAI.CheckedChanged += new System.EventHandler(this.cbEnableEconomyAI_CheckedChanged);
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(714, 461);
this.Controls.Add(this.splitContainer1);
this.Controls.Add(this.ssBotStatus);
this.Margin = new System.Windows.Forms.Padding(2);
this.Name = "MainForm";
this.Text = "StarCraft Bot 9K";
this.Load += new System.EventHandler(this.Form1_Load);
this.ssBotStatus.ResumeLayout(false);
this.ssBotStatus.PerformLayout();
this.splitContainer1.Panel1.ResumeLayout(false);
this.splitContainer1.Panel2.ResumeLayout(false);
this.splitContainer1.ResumeLayout(false);
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel1.PerformLayout();
flowLayoutPanel1.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
示例13: InitializeComponent
//.........这里部分代码省略.........
this.iconPanel.TabIndex = 0;
//
// jImage
//
this.jImage.Dock = System.Windows.Forms.DockStyle.Top;
this.jImage.Image = ((System.Drawing.Image)(resources.GetObject("jImage.Image")));
this.jImage.Location = new System.Drawing.Point(0, 0);
this.jImage.Name = "jImage";
this.jImage.Size = new System.Drawing.Size(125, 127);
this.jImage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
this.jImage.TabIndex = 0;
this.jImage.TabStop = false;
//
// step2Panel
//
this.step2Panel.ColumnCount = 1;
this.step2Panel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.step2Panel.Controls.Add(label3, 0, 0);
this.step2Panel.Controls.Add(label9, 0, 2);
this.step2Panel.Controls.Add(label6, 0, 1);
this.step2Panel.Controls.Add(label11, 0, 5);
this.step2Panel.Controls.Add(label10, 0, 4);
this.step2Panel.Controls.Add(this.interpreterCombo, 0, 3);
this.step2Panel.Controls.Add(this.startupFileList, 0, 6);
this.step2Panel.Location = new System.Drawing.Point(189, 53);
this.step2Panel.Name = "step2Panel";
this.step2Panel.Padding = new System.Windows.Forms.Padding(6);
this.step2Panel.RowCount = 7;
this.step2Panel.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.step2Panel.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.step2Panel.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.step2Panel.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.step2Panel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.step2Panel.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.step2Panel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.step2Panel.Size = new System.Drawing.Size(391, 303);
this.step2Panel.TabIndex = 2;
//
// interpreterCombo
//
this.interpreterCombo.Dock = System.Windows.Forms.DockStyle.Fill;
this.interpreterCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.interpreterCombo.FormattingEnabled = true;
this.interpreterCombo.Location = new System.Drawing.Point(9, 107);
this.interpreterCombo.Margin = new System.Windows.Forms.Padding(3, 3, 3, 15);
this.interpreterCombo.Name = "interpreterCombo";
this.interpreterCombo.Size = new System.Drawing.Size(373, 23);
this.interpreterCombo.TabIndex = 3;
//
// startupFileList
//
this.startupFileList.Dock = System.Windows.Forms.DockStyle.Fill;
this.startupFileList.FullRowSelect = true;
this.startupFileList.HideSelection = false;
this.startupFileList.Location = new System.Drawing.Point(9, 204);
this.startupFileList.Name = "startupFileList";
this.startupFileList.Size = new System.Drawing.Size(373, 90);
this.startupFileList.SmallImageList = this.imageList1;
this.startupFileList.Sorting = System.Windows.Forms.SortOrder.Ascending;
this.startupFileList.TabIndex = 6;
this.startupFileList.UseCompatibleStateImageBehavior = false;
this.startupFileList.View = System.Windows.Forms.View.List;
this.startupFileList.ItemSelectionChanged += new System.Windows.Forms.ListViewItemSelectionChangedEventHandler(this.startupFileList_ItemSelectionChanged);
//
// imageList1
//
this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
this.imageList1.TransparentColor = System.Drawing.Color.Magenta;
this.imageList1.Images.SetKeyName(0, "JFile");
this.imageList1.Images.SetKeyName(1, "JStartupFile");
//
// ImportWizardDialog
//
this.AcceptButton = this.okButton;
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.Window;
this.CancelButton = this.cancelButton;
this.ClientSize = new System.Drawing.Size(629, 426);
this.ControlBox = false;
this.Controls.Add(this.step2Panel);
this.Controls.Add(this.step1Panel);
this.Controls.Add(flowLayoutPanel1);
this.Controls.Add(this.iconPanel);
this.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.Name = "ImportWizardDialog";
this.ShowInTaskbar = false;
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show;
this.Text = "Create New Project from Existing J Code";
flowLayoutPanel1.ResumeLayout(false);
this.step1Panel.ResumeLayout(false);
this.step1Panel.PerformLayout();
this.iconPanel.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.jImage)).EndInit();
this.step2Panel.ResumeLayout(false);
this.step2Panel.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
示例14: 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.FlowLayoutPanel _lytMessage;
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RateForm));
System.Windows.Forms.FlowLayoutPanel _lytButtons;
System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
this._pbxRateImage = new System.Windows.Forms.PictureBox();
this._lblInfo = new System.Windows.Forms.Label();
this._btnYes = new System.Windows.Forms.Button();
this._btnCancel = new System.Windows.Forms.Button();
_lytMessage = new System.Windows.Forms.FlowLayoutPanel();
_lytButtons = new System.Windows.Forms.FlowLayoutPanel();
tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
_lytMessage.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this._pbxRateImage)).BeginInit();
_lytButtons.SuspendLayout();
tableLayoutPanel1.SuspendLayout();
this.SuspendLayout();
//
// _lytMessage
//
resources.ApplyResources(_lytMessage, "_lytMessage");
_lytMessage.Controls.Add(this._pbxRateImage);
_lytMessage.Controls.Add(this._lblInfo);
_lytMessage.Name = "_lytMessage";
//
// _pbxRateImage
//
resources.ApplyResources(this._pbxRateImage, "_pbxRateImage");
this._pbxRateImage.Name = "_pbxRateImage";
this._pbxRateImage.TabStop = false;
//
// _lblInfo
//
resources.ApplyResources(this._lblInfo, "_lblInfo");
_lytMessage.SetFlowBreak(this._lblInfo, true);
this._lblInfo.Name = "_lblInfo";
//
// _lytButtons
//
resources.ApplyResources(_lytButtons, "_lytButtons");
_lytButtons.Controls.Add(this._btnYes);
_lytButtons.Controls.Add(this._btnCancel);
_lytButtons.Name = "_lytButtons";
//
// _btnYes
//
resources.ApplyResources(this._btnYes, "_btnYes");
this._btnYes.DialogResult = System.Windows.Forms.DialogResult.Yes;
this._btnYes.Name = "_btnYes";
//
// _btnCancel
//
resources.ApplyResources(this._btnCancel, "_btnCancel");
this._btnCancel.DialogResult = System.Windows.Forms.DialogResult.No;
this._btnCancel.Name = "_btnCancel";
//
// tableLayoutPanel1
//
resources.ApplyResources(tableLayoutPanel1, "tableLayoutPanel1");
tableLayoutPanel1.Controls.Add(_lytMessage, 0, 0);
tableLayoutPanel1.Controls.Add(_lytButtons, 0, 1);
tableLayoutPanel1.Name = "tableLayoutPanel1";
//
// RateForm
//
this.AcceptButton = this._btnYes;
resources.ApplyResources(this, "$this");
this.BackColor = System.Drawing.SystemColors.ControlLight;
this.CancelButton = this._btnCancel;
this.ControlBox = false;
this.Controls.Add(tableLayoutPanel1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "RateForm";
this.ShowInTaskbar = false;
_lytMessage.ResumeLayout(false);
_lytMessage.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this._pbxRateImage)).EndInit();
_lytButtons.ResumeLayout(false);
_lytButtons.PerformLayout();
tableLayoutPanel1.ResumeLayout(false);
tableLayoutPanel1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
示例15: InitializeComponent
//.........这里部分代码省略.........
flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Top;
flowLayoutPanel1.Location = new System.Drawing.Point(0, 0);
flowLayoutPanel1.Name = "flowLayoutPanel1";
flowLayoutPanel1.Size = new System.Drawing.Size(458, 69);
flowLayoutPanel1.TabIndex = 5;
//
// lblDescription
//
this.lblDescription.AutoSize = true;
this.lblDescription.Dock = System.Windows.Forms.DockStyle.Top;
this.lblDescription.Location = new System.Drawing.Point(0, 0);
this.lblDescription.Margin = new System.Windows.Forms.Padding(0);
this.lblDescription.Name = "lblDescription";
this.lblDescription.Padding = new System.Windows.Forms.Padding(10, 10, 10, 0);
this.lblDescription.Size = new System.Drawing.Size(414, 36);
this.lblDescription.TabIndex = 3;
this.lblDescription.Text = "Unhandled exception has occurred in a component in your application. If you click" +
" Continue, the application will ignore this error and attempt to continue.\r\n";
this.lblDescription.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// lblMessage
//
this.lblMessage.AutoSize = true;
this.lblMessage.Dock = System.Windows.Forms.DockStyle.Top;
this.lblMessage.Location = new System.Drawing.Point(3, 36);
this.lblMessage.Name = "lblMessage";
this.lblMessage.Padding = new System.Windows.Forms.Padding(10);
this.lblMessage.Size = new System.Drawing.Size(118, 33);
this.lblMessage.TabIndex = 0;
this.lblMessage.Text = "exception message";
//
// panel1
//
this.panel1.Controls.Add(this.btnDetails);
this.panel1.Controls.Add(this.btnClose);
this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
this.panel1.Location = new System.Drawing.Point(0, 67);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(458, 47);
this.panel1.TabIndex = 4;
//
// btnDetails
//
this.btnDetails.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.btnDetails.Location = new System.Drawing.Point(12, 12);
this.btnDetails.Name = "btnDetails";
this.btnDetails.Size = new System.Drawing.Size(108, 23);
this.btnDetails.TabIndex = 4;
this.btnDetails.Text = "Details";
this.btnDetails.UseVisualStyleBackColor = true;
this.btnDetails.Click += new System.EventHandler(this.btnDetails_Click);
//
// btnClose
//
this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnClose.DialogResult = System.Windows.Forms.DialogResult.OK;
this.btnClose.Location = new System.Drawing.Point(338, 12);
this.btnClose.Name = "btnClose";
this.btnClose.Size = new System.Drawing.Size(108, 23);
this.btnClose.TabIndex = 3;
this.btnClose.Text = "Resume";
this.btnClose.UseVisualStyleBackColor = true;
//
// txtWholeText
//
this.txtWholeText.Dock = System.Windows.Forms.DockStyle.Fill;
this.txtWholeText.Location = new System.Drawing.Point(0, 69);
this.txtWholeText.Multiline = true;
this.txtWholeText.Name = "txtWholeText";
this.txtWholeText.ReadOnly = true;
this.txtWholeText.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.txtWholeText.Size = new System.Drawing.Size(458, 0);
this.txtWholeText.TabIndex = 0;
this.txtWholeText.Visible = false;
//
// frmExceptionBox
//
this.AcceptButton = this.btnClose;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoSize = true;
this.CancelButton = this.btnClose;
this.ClientSize = new System.Drawing.Size(458, 114);
this.Controls.Add(this.txtWholeText);
this.Controls.Add(flowLayoutPanel1);
this.Controls.Add(this.panel1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "frmExceptionBox";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Exception";
this.Resize += new System.EventHandler(this.frmExceptionBox_Resize);
flowLayoutPanel1.ResumeLayout(false);
flowLayoutPanel1.PerformLayout();
this.panel1.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}