分析模块重新调整

This commit is contained in:
2026-03-26 06:50:22 +08:00
parent 8cd16929a3
commit 8c105c5068
62 changed files with 447 additions and 949 deletions

View File

@@ -33,7 +33,6 @@
this.btnOK = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.btnClearAll = new System.Windows.Forms.Button();
this.btnReorganize = new System.Windows.Forms.Button();
this.tsmiFile = new System.Windows.Forms.ToolStripMenuItem();
this.tsmiOpen = new System.Windows.Forms.ToolStripMenuItem();
this.tsmiSaveAs = new System.Windows.Forms.ToolStripMenuItem();
@@ -108,17 +107,6 @@
this.btnClearAll.UseVisualStyleBackColor = true;
this.btnClearAll.Click += new System.EventHandler(this.btnClearAll_Click);
//
// btnReorganize
//
this.btnReorganize.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.btnReorganize.Location = new System.Drawing.Point(15, 326);
this.btnReorganize.Name = "btnReorganize";
this.btnReorganize.Size = new System.Drawing.Size(75, 23);
this.btnReorganize.TabIndex = 17;
this.btnReorganize.Text = "显示/隐藏";
this.btnReorganize.UseVisualStyleBackColor = true;
this.btnReorganize.Click += new System.EventHandler(this.btnReorganize_Click);
//
// tsmiFile
//
this.tsmiFile.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
@@ -127,14 +115,14 @@
this.tsmiDividerFile1,
this.tsmiClose});
this.tsmiFile.Name = "tsmiFile";
this.tsmiFile.Size = new System.Drawing.Size(48, 24);
this.tsmiFile.Size = new System.Drawing.Size(48, 26);
this.tsmiFile.Text = "File";
//
// tsmiOpen
//
this.tsmiOpen.Image = global::CPSO.Properties.Resources.Open;
this.tsmiOpen.Name = "tsmiOpen";
this.tsmiOpen.Size = new System.Drawing.Size(224, 26);
this.tsmiOpen.Size = new System.Drawing.Size(148, 26);
this.tsmiOpen.Text = "Open";
this.tsmiOpen.Click += new System.EventHandler(this.tsmiOpen_Click);
//
@@ -142,19 +130,19 @@
//
this.tsmiSaveAs.Image = global::CPSO.Properties.Resources.Save;
this.tsmiSaveAs.Name = "tsmiSaveAs";
this.tsmiSaveAs.Size = new System.Drawing.Size(224, 26);
this.tsmiSaveAs.Size = new System.Drawing.Size(148, 26);
this.tsmiSaveAs.Text = "Save As";
this.tsmiSaveAs.Click += new System.EventHandler(this.tsmiSaveAs_Click);
//
// tsmiDividerFile1
//
this.tsmiDividerFile1.Name = "tsmiDividerFile1";
this.tsmiDividerFile1.Size = new System.Drawing.Size(221, 6);
this.tsmiDividerFile1.Size = new System.Drawing.Size(145, 6);
//
// tsmiClose
//
this.tsmiClose.Name = "tsmiClose";
this.tsmiClose.Size = new System.Drawing.Size(224, 26);
this.tsmiClose.Size = new System.Drawing.Size(148, 26);
this.tsmiClose.Text = "Close";
this.tsmiClose.Click += new System.EventHandler(this.tsmiClose_Click);
//
@@ -165,7 +153,7 @@
this.tsmiFile});
this.msMain.Location = new System.Drawing.Point(0, 0);
this.msMain.Name = "msMain";
this.msMain.Size = new System.Drawing.Size(784, 28);
this.msMain.Size = new System.Drawing.Size(784, 30);
this.msMain.TabIndex = 15;
this.msMain.Text = "menuStrip1";
//
@@ -174,7 +162,6 @@
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
this.CancelButton = this.btnCancel;
this.ClientSize = new System.Drawing.Size(784, 361);
this.Controls.Add(this.btnReorganize);
this.Controls.Add(this.btnClearAll);
this.Controls.Add(this.btnOK);
this.Controls.Add(this.btnCancel);
@@ -205,7 +192,6 @@
private System.Windows.Forms.Button btnOK;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.Button btnClearAll;
private System.Windows.Forms.Button btnReorganize;
private System.Windows.Forms.DataGridView dgvCommands;
private System.Windows.Forms.ToolStripMenuItem tsmiFile;
private System.Windows.Forms.ToolStripMenuItem tsmiOpen;