258 lines
14 KiB
C#
258 lines
14 KiB
C#
|
|
namespace CRVM
|
|||
|
|
{
|
|||
|
|
partial class PlottingReview
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Required designer variable.
|
|||
|
|
/// </summary>
|
|||
|
|
private System.ComponentModel.IContainer components = null;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Clean up any resources being used.
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|||
|
|
protected override void Dispose(bool disposing)
|
|||
|
|
{
|
|||
|
|
if (disposing && (components != null))
|
|||
|
|
{
|
|||
|
|
components.Dispose();
|
|||
|
|
}
|
|||
|
|
base.Dispose(disposing);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
#region Windows Form Designer generated code
|
|||
|
|
|
|||
|
|
/// <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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PlottingReview));
|
|||
|
|
this.zedGraphControl1 = new ZedGraph.ZedGraphControl();
|
|||
|
|
this.timer1 = new System.Windows.Forms.Timer(this.components);
|
|||
|
|
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
|
|||
|
|
this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
|
|||
|
|
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
|
|||
|
|
this.btStart = new System.Windows.Forms.ToolStripButton();
|
|||
|
|
this.btPause = new System.Windows.Forms.ToolStripButton();
|
|||
|
|
this.btStop = new System.Windows.Forms.ToolStripButton();
|
|||
|
|
this.btLeft = new System.Windows.Forms.ToolStripButton();
|
|||
|
|
this.btRight = new System.Windows.Forms.ToolStripButton();
|
|||
|
|
this.stepBar = new System.Windows.Forms.HScrollBar();
|
|||
|
|
this.trackBar1 = new System.Windows.Forms.TrackBar();
|
|||
|
|
this.tableLayoutPanel1.SuspendLayout();
|
|||
|
|
this.tableLayoutPanel2.SuspendLayout();
|
|||
|
|
this.toolStrip1.SuspendLayout();
|
|||
|
|
((System.ComponentModel.ISupportInitialize)(this.trackBar1)).BeginInit();
|
|||
|
|
this.SuspendLayout();
|
|||
|
|
//
|
|||
|
|
// zedGraphControl1
|
|||
|
|
//
|
|||
|
|
this.zedGraphControl1.BackColor = System.Drawing.SystemColors.Control;
|
|||
|
|
this.zedGraphControl1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|||
|
|
this.zedGraphControl1.Location = new System.Drawing.Point(0, 0);
|
|||
|
|
this.zedGraphControl1.Margin = new System.Windows.Forms.Padding(0);
|
|||
|
|
this.zedGraphControl1.Name = "zedGraphControl1";
|
|||
|
|
this.zedGraphControl1.ScrollGrace = 0D;
|
|||
|
|
this.zedGraphControl1.ScrollMaxX = 0D;
|
|||
|
|
this.zedGraphControl1.ScrollMaxY = 0D;
|
|||
|
|
this.zedGraphControl1.ScrollMaxY2 = 0D;
|
|||
|
|
this.zedGraphControl1.ScrollMinX = 0D;
|
|||
|
|
this.zedGraphControl1.ScrollMinY = 0D;
|
|||
|
|
this.zedGraphControl1.ScrollMinY2 = 0D;
|
|||
|
|
this.zedGraphControl1.Size = new System.Drawing.Size(898, 644);
|
|||
|
|
this.zedGraphControl1.TabIndex = 0;
|
|||
|
|
this.zedGraphControl1.ContextMenuBuilder += new ZedGraph.ZedGraphControl.ContextMenuBuilderEventHandler(this.zedGraphControl1_ContextMenuBuilder);
|
|||
|
|
this.zedGraphControl1.PointValueEvent += new ZedGraph.ZedGraphControl.PointValueHandler(this.zedGraphControl1_PointValueEvent);
|
|||
|
|
//
|
|||
|
|
// timer1
|
|||
|
|
//
|
|||
|
|
this.timer1.Interval = 200;
|
|||
|
|
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
|
|||
|
|
//
|
|||
|
|
// 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.tableLayoutPanel2, 0, 1);
|
|||
|
|
this.tableLayoutPanel1.Controls.Add(this.zedGraphControl1, 0, 0);
|
|||
|
|
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|||
|
|
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
|
|||
|
|
this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(0);
|
|||
|
|
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
|
|||
|
|
this.tableLayoutPanel1.RowCount = 2;
|
|||
|
|
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, 35F));
|
|||
|
|
this.tableLayoutPanel1.Size = new System.Drawing.Size(898, 679);
|
|||
|
|
this.tableLayoutPanel1.TabIndex = 3;
|
|||
|
|
//
|
|||
|
|
// tableLayoutPanel2
|
|||
|
|
//
|
|||
|
|
this.tableLayoutPanel2.BackColor = System.Drawing.SystemColors.Control;
|
|||
|
|
this.tableLayoutPanel2.ColumnCount = 3;
|
|||
|
|
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 175F));
|
|||
|
|
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 117F));
|
|||
|
|
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
|
|||
|
|
this.tableLayoutPanel2.Controls.Add(this.toolStrip1, 0, 0);
|
|||
|
|
this.tableLayoutPanel2.Controls.Add(this.stepBar, 2, 0);
|
|||
|
|
this.tableLayoutPanel2.Controls.Add(this.trackBar1, 1, 0);
|
|||
|
|
this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
|
|||
|
|
this.tableLayoutPanel2.Location = new System.Drawing.Point(0, 644);
|
|||
|
|
this.tableLayoutPanel2.Margin = new System.Windows.Forms.Padding(0);
|
|||
|
|
this.tableLayoutPanel2.Name = "tableLayoutPanel2";
|
|||
|
|
this.tableLayoutPanel2.RowCount = 1;
|
|||
|
|
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
|
|||
|
|
this.tableLayoutPanel2.Size = new System.Drawing.Size(898, 35);
|
|||
|
|
this.tableLayoutPanel2.TabIndex = 4;
|
|||
|
|
//
|
|||
|
|
// toolStrip1
|
|||
|
|
//
|
|||
|
|
this.toolStrip1.AutoSize = false;
|
|||
|
|
this.toolStrip1.BackColor = System.Drawing.SystemColors.Control;
|
|||
|
|
this.toolStrip1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|||
|
|
this.toolStrip1.GripMargin = new System.Windows.Forms.Padding(0);
|
|||
|
|
this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
|
|||
|
|
this.toolStrip1.ImageScalingSize = new System.Drawing.Size(34, 34);
|
|||
|
|
this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|||
|
|
this.btStart,
|
|||
|
|
this.btPause,
|
|||
|
|
this.btStop,
|
|||
|
|
this.btLeft,
|
|||
|
|
this.btRight});
|
|||
|
|
this.toolStrip1.Location = new System.Drawing.Point(0, 0);
|
|||
|
|
this.toolStrip1.Name = "toolStrip1";
|
|||
|
|
this.toolStrip1.Padding = new System.Windows.Forms.Padding(0);
|
|||
|
|
this.toolStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
|
|||
|
|
this.toolStrip1.Size = new System.Drawing.Size(175, 35);
|
|||
|
|
this.toolStrip1.Stretch = true;
|
|||
|
|
this.toolStrip1.TabIndex = 4;
|
|||
|
|
this.toolStrip1.Text = "toolStrip1";
|
|||
|
|
//
|
|||
|
|
// btStart
|
|||
|
|
//
|
|||
|
|
this.btStart.AutoSize = false;
|
|||
|
|
this.btStart.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
|||
|
|
this.btStart.Image = global::Host.Properties.Resources.Play_64;
|
|||
|
|
this.btStart.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|||
|
|
this.btStart.Margin = new System.Windows.Forms.Padding(0);
|
|||
|
|
this.btStart.Name = "btStart";
|
|||
|
|
this.btStart.Size = new System.Drawing.Size(34, 34);
|
|||
|
|
this.btStart.Text = "开始";
|
|||
|
|
this.btStart.Click += new System.EventHandler(this.btStart_Click);
|
|||
|
|
//
|
|||
|
|
// btPause
|
|||
|
|
//
|
|||
|
|
this.btPause.AutoSize = false;
|
|||
|
|
this.btPause.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
|||
|
|
this.btPause.Image = global::Host.Properties.Resources.Pause_64;
|
|||
|
|
this.btPause.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|||
|
|
this.btPause.Margin = new System.Windows.Forms.Padding(0);
|
|||
|
|
this.btPause.Name = "btPause";
|
|||
|
|
this.btPause.Size = new System.Drawing.Size(34, 34);
|
|||
|
|
this.btPause.Text = "暂停";
|
|||
|
|
this.btPause.Click += new System.EventHandler(this.btPaues_Click);
|
|||
|
|
//
|
|||
|
|
// btStop
|
|||
|
|
//
|
|||
|
|
this.btStop.AutoSize = false;
|
|||
|
|
this.btStop.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
|||
|
|
this.btStop.Image = global::Host.Properties.Resources.Stop_64;
|
|||
|
|
this.btStop.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|||
|
|
this.btStop.Margin = new System.Windows.Forms.Padding(0);
|
|||
|
|
this.btStop.Name = "btStop";
|
|||
|
|
this.btStop.Size = new System.Drawing.Size(34, 34);
|
|||
|
|
this.btStop.Text = "停止";
|
|||
|
|
this.btStop.Click += new System.EventHandler(this.btStop_Click);
|
|||
|
|
//
|
|||
|
|
// btLeft
|
|||
|
|
//
|
|||
|
|
this.btLeft.AutoSize = false;
|
|||
|
|
this.btLeft.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
|||
|
|
this.btLeft.Image = global::Host.Properties.Resources.Back_64;
|
|||
|
|
this.btLeft.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|||
|
|
this.btLeft.Margin = new System.Windows.Forms.Padding(0);
|
|||
|
|
this.btLeft.Name = "btLeft";
|
|||
|
|
this.btLeft.Size = new System.Drawing.Size(34, 34);
|
|||
|
|
this.btLeft.Text = "后退 ";
|
|||
|
|
this.btLeft.Click += new System.EventHandler(this.btLeft_Click);
|
|||
|
|
//
|
|||
|
|
// btRight
|
|||
|
|
//
|
|||
|
|
this.btRight.AutoSize = false;
|
|||
|
|
this.btRight.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
|||
|
|
this.btRight.Image = global::Host.Properties.Resources.Forward_64;
|
|||
|
|
this.btRight.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|||
|
|
this.btRight.Margin = new System.Windows.Forms.Padding(0);
|
|||
|
|
this.btRight.Name = "btRight";
|
|||
|
|
this.btRight.Size = new System.Drawing.Size(34, 34);
|
|||
|
|
this.btRight.Text = "继续";
|
|||
|
|
this.btRight.Click += new System.EventHandler(this.btRight_Click);
|
|||
|
|
//
|
|||
|
|
// stepBar
|
|||
|
|
//
|
|||
|
|
this.stepBar.Dock = System.Windows.Forms.DockStyle.Fill;
|
|||
|
|
this.stepBar.LargeChange = 2560;
|
|||
|
|
this.stepBar.Location = new System.Drawing.Point(292, 0);
|
|||
|
|
this.stepBar.Maximum = 5120;
|
|||
|
|
this.stepBar.Name = "stepBar";
|
|||
|
|
this.stepBar.Size = new System.Drawing.Size(606, 35);
|
|||
|
|
this.stepBar.SmallChange = 2560;
|
|||
|
|
this.stepBar.TabIndex = 4;
|
|||
|
|
this.stepBar.Scroll += new System.Windows.Forms.ScrollEventHandler(this.stepBar_Scroll);
|
|||
|
|
//
|
|||
|
|
// trackBar1
|
|||
|
|
//
|
|||
|
|
this.trackBar1.BackColor = System.Drawing.SystemColors.Control;
|
|||
|
|
this.trackBar1.Cursor = System.Windows.Forms.Cursors.Default;
|
|||
|
|
this.trackBar1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|||
|
|
this.trackBar1.Location = new System.Drawing.Point(175, 0);
|
|||
|
|
this.trackBar1.Margin = new System.Windows.Forms.Padding(0);
|
|||
|
|
this.trackBar1.Minimum = -10;
|
|||
|
|
this.trackBar1.Name = "trackBar1";
|
|||
|
|
this.trackBar1.RightToLeft = System.Windows.Forms.RightToLeft.No;
|
|||
|
|
this.trackBar1.Size = new System.Drawing.Size(117, 35);
|
|||
|
|
this.trackBar1.TabIndex = 5;
|
|||
|
|
this.trackBar1.TickStyle = System.Windows.Forms.TickStyle.Both;
|
|||
|
|
this.trackBar1.Scroll += new System.EventHandler(this.trackBar1_Scroll);
|
|||
|
|
//
|
|||
|
|
// PlottingReview
|
|||
|
|
//
|
|||
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
|
|||
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
|
this.ClientSize = new System.Drawing.Size(898, 679);
|
|||
|
|
this.Controls.Add(this.tableLayoutPanel1);
|
|||
|
|
this.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
|||
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|||
|
|
this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
|
|||
|
|
this.Name = "PlottingReview";
|
|||
|
|
this.ShowIcon = false;
|
|||
|
|
this.Text = "PlottingReview";
|
|||
|
|
this.Load += new System.EventHandler(this.Plot_Load);
|
|||
|
|
this.tableLayoutPanel1.ResumeLayout(false);
|
|||
|
|
this.tableLayoutPanel2.ResumeLayout(false);
|
|||
|
|
this.tableLayoutPanel2.PerformLayout();
|
|||
|
|
this.toolStrip1.ResumeLayout(false);
|
|||
|
|
this.toolStrip1.PerformLayout();
|
|||
|
|
((System.ComponentModel.ISupportInitialize)(this.trackBar1)).EndInit();
|
|||
|
|
this.ResumeLayout(false);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
#endregion
|
|||
|
|
|
|||
|
|
private ZedGraph.ZedGraphControl zedGraphControl1;
|
|||
|
|
private System.Windows.Forms.Timer timer1;
|
|||
|
|
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
|
|||
|
|
private System.Windows.Forms.HScrollBar stepBar;
|
|||
|
|
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
|
|||
|
|
private System.Windows.Forms.ToolStrip toolStrip1;
|
|||
|
|
private System.Windows.Forms.ToolStripButton btStart;
|
|||
|
|
private System.Windows.Forms.ToolStripButton btStop;
|
|||
|
|
private System.Windows.Forms.ToolStripButton btPause;
|
|||
|
|
private System.Windows.Forms.ToolStripButton btRight;
|
|||
|
|
private System.Windows.Forms.TrackBar trackBar1;
|
|||
|
|
private System.Windows.Forms.ToolStripButton btLeft;
|
|||
|
|
}
|
|||
|
|
}
|