- Material Pair 리스트뷰로 변경 및 그래프 refresh 수정
This commit is contained in:
101
PanelMaterial.Designer.cs
generated
101
PanelMaterial.Designer.cs
generated
@@ -28,43 +28,15 @@
|
||||
/// </summary>
|
||||
private void InitializeComponent()
|
||||
{
|
||||
this.cbMaterialTable = new System.Windows.Forms.ComboBox();
|
||||
this.cbMaterialSpring = new System.Windows.Forms.ComboBox();
|
||||
this.btApply = new System.Windows.Forms.Button();
|
||||
this.lbFileName = new System.Windows.Forms.Label();
|
||||
this.label2 = new System.Windows.Forms.Label();
|
||||
this.label3 = new System.Windows.Forms.Label();
|
||||
this.lvSpring = new System.Windows.Forms.ListView();
|
||||
this.lvchSpring = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
||||
this.lvTable = new System.Windows.Forms.ListView();
|
||||
this.lvchTable = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// cbMaterialTable
|
||||
//
|
||||
this.cbMaterialTable.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
||||
this.cbMaterialTable.FormattingEnabled = true;
|
||||
this.cbMaterialTable.Location = new System.Drawing.Point(32, 122);
|
||||
this.cbMaterialTable.Name = "cbMaterialTable";
|
||||
this.cbMaterialTable.Size = new System.Drawing.Size(121, 20);
|
||||
this.cbMaterialTable.TabIndex = 1;
|
||||
//
|
||||
// cbMaterialSpring
|
||||
//
|
||||
this.cbMaterialSpring.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
||||
this.cbMaterialSpring.FormattingEnabled = true;
|
||||
this.cbMaterialSpring.Location = new System.Drawing.Point(32, 61);
|
||||
this.cbMaterialSpring.Name = "cbMaterialSpring";
|
||||
this.cbMaterialSpring.Size = new System.Drawing.Size(121, 20);
|
||||
this.cbMaterialSpring.TabIndex = 2;
|
||||
//
|
||||
// btApply
|
||||
//
|
||||
this.btApply.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
||||
this.btApply.Location = new System.Drawing.Point(32, 179);
|
||||
this.btApply.Name = "btApply";
|
||||
this.btApply.Size = new System.Drawing.Size(75, 23);
|
||||
this.btApply.TabIndex = 3;
|
||||
this.btApply.Text = "Apply";
|
||||
this.btApply.UseVisualStyleBackColor = true;
|
||||
this.btApply.Click += new System.EventHandler(this.btApply_Click);
|
||||
//
|
||||
// lbFileName
|
||||
//
|
||||
this.lbFileName.AutoSize = true;
|
||||
@@ -77,7 +49,7 @@
|
||||
// label2
|
||||
//
|
||||
this.label2.AutoSize = true;
|
||||
this.label2.Location = new System.Drawing.Point(30, 46);
|
||||
this.label2.Location = new System.Drawing.Point(12, 46);
|
||||
this.label2.Name = "label2";
|
||||
this.label2.Size = new System.Drawing.Size(90, 12);
|
||||
this.label2.TabIndex = 5;
|
||||
@@ -85,25 +57,70 @@
|
||||
//
|
||||
// label3
|
||||
//
|
||||
this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
||||
this.label3.AutoSize = true;
|
||||
this.label3.Location = new System.Drawing.Point(30, 107);
|
||||
this.label3.Location = new System.Drawing.Point(10, 424);
|
||||
this.label3.Name = "label3";
|
||||
this.label3.Size = new System.Drawing.Size(86, 12);
|
||||
this.label3.TabIndex = 6;
|
||||
this.label3.Text = "Material Table";
|
||||
//
|
||||
// lvSpring
|
||||
//
|
||||
this.lvSpring.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.lvSpring.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
||||
this.lvchSpring});
|
||||
this.lvSpring.FullRowSelect = true;
|
||||
this.lvSpring.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
|
||||
this.lvSpring.Location = new System.Drawing.Point(12, 61);
|
||||
this.lvSpring.Name = "lvSpring";
|
||||
this.lvSpring.Size = new System.Drawing.Size(326, 343);
|
||||
this.lvSpring.TabIndex = 7;
|
||||
this.lvSpring.UseCompatibleStateImageBehavior = false;
|
||||
this.lvSpring.View = System.Windows.Forms.View.Details;
|
||||
this.lvSpring.SizeChanged += new System.EventHandler(this.lvSpring_SizeChanged);
|
||||
this.lvSpring.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.lvSpring_MouseDoubleClick);
|
||||
//
|
||||
// lvchSpring
|
||||
//
|
||||
this.lvchSpring.Text = "Material Spring";
|
||||
this.lvchSpring.Width = 308;
|
||||
//
|
||||
// lvTable
|
||||
//
|
||||
this.lvTable.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.lvTable.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
||||
this.lvchTable});
|
||||
this.lvTable.FullRowSelect = true;
|
||||
this.lvTable.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
|
||||
this.lvTable.Location = new System.Drawing.Point(12, 439);
|
||||
this.lvTable.Name = "lvTable";
|
||||
this.lvTable.Size = new System.Drawing.Size(326, 276);
|
||||
this.lvTable.TabIndex = 8;
|
||||
this.lvTable.UseCompatibleStateImageBehavior = false;
|
||||
this.lvTable.View = System.Windows.Forms.View.Details;
|
||||
this.lvTable.SizeChanged += new System.EventHandler(this.lvTable_SizeChanged);
|
||||
this.lvTable.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.lvTable_MouseDoubleClick);
|
||||
//
|
||||
// lvchTable
|
||||
//
|
||||
this.lvchTable.Text = "Table";
|
||||
this.lvchTable.Width = 305;
|
||||
//
|
||||
// PanelMaterial
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.ClientSize = new System.Drawing.Size(284, 261);
|
||||
this.ClientSize = new System.Drawing.Size(350, 727);
|
||||
this.ControlBox = false;
|
||||
this.Controls.Add(this.lvTable);
|
||||
this.Controls.Add(this.lvSpring);
|
||||
this.Controls.Add(this.label3);
|
||||
this.Controls.Add(this.label2);
|
||||
this.Controls.Add(this.lbFileName);
|
||||
this.Controls.Add(this.btApply);
|
||||
this.Controls.Add(this.cbMaterialSpring);
|
||||
this.Controls.Add(this.cbMaterialTable);
|
||||
this.HideOnClose = true;
|
||||
this.Name = "PanelMaterial";
|
||||
this.ShowHint = WeifenLuo.WinFormsUI.Docking.DockState.DockLeft;
|
||||
@@ -115,12 +132,12 @@
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private System.Windows.Forms.ComboBox cbMaterialTable;
|
||||
private System.Windows.Forms.ComboBox cbMaterialSpring;
|
||||
private System.Windows.Forms.Button btApply;
|
||||
private System.Windows.Forms.Label lbFileName;
|
||||
private System.Windows.Forms.Label label2;
|
||||
private System.Windows.Forms.Label label3;
|
||||
private System.Windows.Forms.ListView lvSpring;
|
||||
private System.Windows.Forms.ListView lvTable;
|
||||
private System.Windows.Forms.ColumnHeader lvchSpring;
|
||||
private System.Windows.Forms.ColumnHeader lvchTable;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user