- 재질 check 기능 수정
- 리포트 맵 부분 수정
This commit is contained in:
79
PanelTrendGraph.Designer.cs
generated
79
PanelTrendGraph.Designer.cs
generated
@@ -35,11 +35,15 @@
|
||||
this.groupBox1 = new System.Windows.Forms.GroupBox();
|
||||
this.rbVelocity = new System.Windows.Forms.RadioButton();
|
||||
this.rbForce = new System.Windows.Forms.RadioButton();
|
||||
this.panelGraph = new System.Windows.Forms.Panel();
|
||||
this.lbPair1 = new System.Windows.Forms.Label();
|
||||
this.lbPair2 = new System.Windows.Forms.Label();
|
||||
this.lbPair3 = new System.Windows.Forms.Label();
|
||||
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
|
||||
this.panel1 = new System.Windows.Forms.Panel();
|
||||
this.panelGraph = new System.Windows.Forms.Panel();
|
||||
this.groupBox1.SuspendLayout();
|
||||
this.tableLayoutPanel1.SuspendLayout();
|
||||
this.panel1.SuspendLayout();
|
||||
this.panelGraph.SuspendLayout();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
@@ -48,7 +52,7 @@
|
||||
this.trendChart.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.trendChart.Location = new System.Drawing.Point(0, 0);
|
||||
this.trendChart.Name = "trendChart";
|
||||
this.trendChart.Size = new System.Drawing.Size(701, 603);
|
||||
this.trendChart.Size = new System.Drawing.Size(756, 608);
|
||||
this.trendChart.TabIndex = 0;
|
||||
this.trendChart.Text = "trendChart";
|
||||
this.trendChart.UpdaterTick += new LiveCharts.Events.UpdaterTickHandler(this.trendChart_UpdaterTick);
|
||||
@@ -88,9 +92,9 @@
|
||||
this.groupBox1.Controls.Add(this.rbForce);
|
||||
this.groupBox1.Controls.Add(this.rbTemp);
|
||||
this.groupBox1.ForeColor = System.Drawing.SystemColors.ControlText;
|
||||
this.groupBox1.Location = new System.Drawing.Point(8, 3);
|
||||
this.groupBox1.Location = new System.Drawing.Point(6, 3);
|
||||
this.groupBox1.Name = "groupBox1";
|
||||
this.groupBox1.Size = new System.Drawing.Size(297, 50);
|
||||
this.groupBox1.Size = new System.Drawing.Size(300, 50);
|
||||
this.groupBox1.TabIndex = 2;
|
||||
this.groupBox1.TabStop = false;
|
||||
this.groupBox1.Text = "Data";
|
||||
@@ -121,21 +125,10 @@
|
||||
this.rbForce.UseVisualStyleBackColor = true;
|
||||
this.rbForce.CheckedChanged += new System.EventHandler(this.rbForce_CheckedChanged);
|
||||
//
|
||||
// panelGraph
|
||||
//
|
||||
this.panelGraph.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.panelGraph.Controls.Add(this.trendChart);
|
||||
this.panelGraph.Location = new System.Drawing.Point(34, 59);
|
||||
this.panelGraph.Name = "panelGraph";
|
||||
this.panelGraph.Size = new System.Drawing.Size(701, 603);
|
||||
this.panelGraph.TabIndex = 3;
|
||||
//
|
||||
// lbPair1
|
||||
//
|
||||
this.lbPair1.AutoSize = true;
|
||||
this.lbPair1.Location = new System.Drawing.Point(327, 28);
|
||||
this.lbPair1.Location = new System.Drawing.Point(312, 28);
|
||||
this.lbPair1.Name = "lbPair1";
|
||||
this.lbPair1.Size = new System.Drawing.Size(32, 12);
|
||||
this.lbPair1.TabIndex = 4;
|
||||
@@ -144,7 +137,7 @@
|
||||
// lbPair2
|
||||
//
|
||||
this.lbPair2.AutoSize = true;
|
||||
this.lbPair2.Location = new System.Drawing.Point(365, 28);
|
||||
this.lbPair2.Location = new System.Drawing.Point(350, 28);
|
||||
this.lbPair2.Name = "lbPair2";
|
||||
this.lbPair2.Size = new System.Drawing.Size(32, 12);
|
||||
this.lbPair2.TabIndex = 5;
|
||||
@@ -153,23 +146,55 @@
|
||||
// lbPair3
|
||||
//
|
||||
this.lbPair3.AutoSize = true;
|
||||
this.lbPair3.Location = new System.Drawing.Point(403, 28);
|
||||
this.lbPair3.Location = new System.Drawing.Point(388, 28);
|
||||
this.lbPair3.Name = "lbPair3";
|
||||
this.lbPair3.Size = new System.Drawing.Size(32, 12);
|
||||
this.lbPair3.TabIndex = 6;
|
||||
this.lbPair3.Text = "label";
|
||||
//
|
||||
// tableLayoutPanel1
|
||||
//
|
||||
this.tableLayoutPanel1.ColumnCount = 1;
|
||||
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
|
||||
this.tableLayoutPanel1.Controls.Add(this.panelGraph, 0, 1);
|
||||
this.tableLayoutPanel1.Controls.Add(this.panel1, 0, 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 = 2;
|
||||
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 60F));
|
||||
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
|
||||
this.tableLayoutPanel1.Size = new System.Drawing.Size(762, 674);
|
||||
this.tableLayoutPanel1.TabIndex = 7;
|
||||
//
|
||||
// panel1
|
||||
//
|
||||
this.panel1.Controls.Add(this.groupBox1);
|
||||
this.panel1.Controls.Add(this.lbPair1);
|
||||
this.panel1.Controls.Add(this.lbPair3);
|
||||
this.panel1.Controls.Add(this.lbPair2);
|
||||
this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.panel1.Location = new System.Drawing.Point(3, 3);
|
||||
this.panel1.Name = "panel1";
|
||||
this.panel1.Size = new System.Drawing.Size(756, 54);
|
||||
this.panel1.TabIndex = 8;
|
||||
//
|
||||
// panelGraph
|
||||
//
|
||||
this.panelGraph.Controls.Add(this.trendChart);
|
||||
this.panelGraph.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.panelGraph.Location = new System.Drawing.Point(3, 63);
|
||||
this.panelGraph.Name = "panelGraph";
|
||||
this.panelGraph.Size = new System.Drawing.Size(756, 608);
|
||||
this.panelGraph.TabIndex = 8;
|
||||
//
|
||||
// PanelTrendGraph
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.ClientSize = new System.Drawing.Size(762, 674);
|
||||
this.ControlBox = false;
|
||||
this.Controls.Add(this.lbPair3);
|
||||
this.Controls.Add(this.lbPair2);
|
||||
this.Controls.Add(this.lbPair1);
|
||||
this.Controls.Add(this.panelGraph);
|
||||
this.Controls.Add(this.groupBox1);
|
||||
this.Controls.Add(this.tableLayoutPanel1);
|
||||
this.DockAreas = ((WeifenLuo.WinFormsUI.Docking.DockAreas)(((((WeifenLuo.WinFormsUI.Docking.DockAreas.DockLeft | WeifenLuo.WinFormsUI.Docking.DockAreas.DockRight)
|
||||
| WeifenLuo.WinFormsUI.Docking.DockAreas.DockTop)
|
||||
| WeifenLuo.WinFormsUI.Docking.DockAreas.DockBottom)
|
||||
@@ -183,9 +208,11 @@
|
||||
this.Enter += new System.EventHandler(this.PanelTrendGraph_Enter);
|
||||
this.groupBox1.ResumeLayout(false);
|
||||
this.groupBox1.PerformLayout();
|
||||
this.tableLayoutPanel1.ResumeLayout(false);
|
||||
this.panel1.ResumeLayout(false);
|
||||
this.panel1.PerformLayout();
|
||||
this.panelGraph.ResumeLayout(false);
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
||||
}
|
||||
|
||||
@@ -197,9 +224,11 @@
|
||||
private System.Windows.Forms.GroupBox groupBox1;
|
||||
private System.Windows.Forms.RadioButton rbVelocity;
|
||||
private System.Windows.Forms.RadioButton rbForce;
|
||||
private System.Windows.Forms.Panel panelGraph;
|
||||
private System.Windows.Forms.Label lbPair1;
|
||||
private System.Windows.Forms.Label lbPair2;
|
||||
private System.Windows.Forms.Label lbPair3;
|
||||
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
|
||||
private System.Windows.Forms.Panel panel1;
|
||||
private System.Windows.Forms.Panel panelGraph;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user