75 lines
3.4 KiB
C#
75 lines
3.4 KiB
C#
|
|
namespace CRVM
|
|||
|
|
{
|
|||
|
|
partial class Plotting
|
|||
|
|
{
|
|||
|
|
/// <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(Plotting));
|
|||
|
|
this.zedGraphControl1 = new ZedGraph.ZedGraphControl();
|
|||
|
|
this.SuspendLayout();
|
|||
|
|
//
|
|||
|
|
// zedGraphControl1
|
|||
|
|
//
|
|||
|
|
this.zedGraphControl1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|||
|
|
this.zedGraphControl1.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
|||
|
|
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(762, 573);
|
|||
|
|
this.zedGraphControl1.TabIndex = 0;
|
|||
|
|
this.zedGraphControl1.ContextMenuBuilder += new ZedGraph.ZedGraphControl.ContextMenuBuilderEventHandler(this.zedGraphControl1_ContextMenuBuilder);
|
|||
|
|
this.zedGraphControl1.PointValueEvent += new ZedGraph.ZedGraphControl.PointValueHandler(this.zedGraphControl1_PointValueEvent);
|
|||
|
|
//
|
|||
|
|
// Plotting
|
|||
|
|
//
|
|||
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
|
|||
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
|
this.ClientSize = new System.Drawing.Size(762, 573);
|
|||
|
|
this.Controls.Add(this.zedGraphControl1);
|
|||
|
|
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 = "Plotting";
|
|||
|
|
this.Text = "Plotting";
|
|||
|
|
this.Load += new System.EventHandler(this.Plotting_Load);
|
|||
|
|
this.ResumeLayout(false);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
#endregion
|
|||
|
|
|
|||
|
|
private ZedGraph.ZedGraphControl zedGraphControl1;
|
|||
|
|
}
|
|||
|
|
}
|