📄 mainform.designer.cs
字号:
namespace WindowsApplication1
{
partial class MainForm
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.textBoxLog1 = new LoggingLib.Impl.TextBoxLog();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.textBoxLength = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.comboBox1 = new System.Windows.Forms.ComboBox();
this.label1 = new System.Windows.Forms.Label();
this.button1 = new System.Windows.Forms.Button();
this.radioButtonHand = new System.Windows.Forms.RadioButton();
this.radioButtonFile = new System.Windows.Forms.RadioButton();
this.radioButtonRadom = new System.Windows.Forms.RadioButton();
this.button2 = new System.Windows.Forms.Button();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// textBoxLog1
//
this.textBoxLog1.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.textBoxLog1.DebugEnabled = true;
this.textBoxLog1.ErrorEnabled = true;
this.textBoxLog1.FatalEnabled = true;
this.textBoxLog1.InfoEnabled = true;
this.textBoxLog1.Location = new System.Drawing.Point(12, 219);
this.textBoxLog1.Multiline = true;
this.textBoxLog1.Name = "textBoxLog1";
this.textBoxLog1.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.textBoxLog1.Size = new System.Drawing.Size(736, 247);
this.textBoxLog1.TabIndex = 2;
this.textBoxLog1.TraceEnabled = true;
this.textBoxLog1.WarnEnabled = true;
//
// groupBox1
//
this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.groupBox1.Controls.Add(this.button2);
this.groupBox1.Controls.Add(this.textBoxLength);
this.groupBox1.Controls.Add(this.label2);
this.groupBox1.Controls.Add(this.comboBox1);
this.groupBox1.Controls.Add(this.label1);
this.groupBox1.Controls.Add(this.button1);
this.groupBox1.Controls.Add(this.radioButtonHand);
this.groupBox1.Controls.Add(this.radioButtonFile);
this.groupBox1.Controls.Add(this.radioButtonRadom);
this.groupBox1.Location = new System.Drawing.Point(12, 12);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(736, 175);
this.groupBox1.TabIndex = 3;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "PSRS算法设置";
//
// textBoxLength
//
this.textBoxLength.Enabled = false;
this.textBoxLength.Location = new System.Drawing.Point(515, 86);
this.textBoxLength.Name = "textBoxLength";
this.textBoxLength.Size = new System.Drawing.Size(106, 21);
this.textBoxLength.TabIndex = 8;
this.textBoxLength.Validated += new System.EventHandler(this.textBoxLength_Validated);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(323, 89);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(149, 12);
this.label2.TabIndex = 7;
this.label2.Text = "请输入随机生成的数组长度";
//
// comboBox1
//
this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBox1.FormattingEnabled = true;
this.comboBox1.Location = new System.Drawing.Point(515, 120);
this.comboBox1.Name = "comboBox1";
this.comboBox1.Size = new System.Drawing.Size(121, 20);
this.comboBox1.TabIndex = 6;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(323, 120);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(101, 12);
this.label1.TabIndex = 5;
this.label1.Text = "请选择处理器数目";
//
// button1
//
this.button1.Location = new System.Drawing.Point(106, 20);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(75, 23);
this.button1.TabIndex = 3;
this.button1.Text = "开始";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// radioButtonHand
//
this.radioButtonHand.AutoSize = true;
this.radioButtonHand.Location = new System.Drawing.Point(325, 64);
this.radioButtonHand.Name = "radioButtonHand";
this.radioButtonHand.Size = new System.Drawing.Size(95, 16);
this.radioButtonHand.TabIndex = 2;
this.radioButtonHand.Text = "手动输入数组";
this.radioButtonHand.UseVisualStyleBackColor = true;
//
// radioButtonFile
//
this.radioButtonFile.AutoSize = true;
this.radioButtonFile.Location = new System.Drawing.Point(325, 42);
this.radioButtonFile.Name = "radioButtonFile";
this.radioButtonFile.Size = new System.Drawing.Size(107, 16);
this.radioButtonFile.TabIndex = 1;
this.radioButtonFile.Text = "从文件读取数组";
this.radioButtonFile.UseVisualStyleBackColor = true;
//
// radioButtonRadom
//
this.radioButtonRadom.AutoSize = true;
this.radioButtonRadom.Location = new System.Drawing.Point(325, 20);
this.radioButtonRadom.Name = "radioButtonRadom";
this.radioButtonRadom.Size = new System.Drawing.Size(95, 16);
this.radioButtonRadom.TabIndex = 0;
this.radioButtonRadom.Text = "随机生成数组";
this.radioButtonRadom.UseVisualStyleBackColor = true;
this.radioButtonRadom.CheckedChanged += new System.EventHandler(this.radioButtonRadom_CheckedChanged);
//
// button2
//
this.button2.Location = new System.Drawing.Point(106, 78);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(75, 23);
this.button2.TabIndex = 9;
this.button2.Text = "清除输出";
this.button2.UseVisualStyleBackColor = true;
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(760, 478);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.textBoxLog1);
this.MaximizeBox = false;
this.Name = "MainForm";
this.Text = "PSRS算法演示";
this.Load += new System.EventHandler(this.MainForm_Load);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private LoggingLib.Impl.TextBoxLog textBoxLog1;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.RadioButton radioButtonHand;
private System.Windows.Forms.RadioButton radioButtonFile;
private System.Windows.Forms.RadioButton radioButtonRadom;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.ComboBox comboBox1;
private System.Windows.Forms.TextBox textBoxLength;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Button button2;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -