148 lines
5.5 KiB
C#
148 lines
5.5 KiB
C#
namespace friction
|
|
{
|
|
partial class PanelTrendGraph
|
|
{
|
|
/// <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.trendChart = new LiveCharts.WinForms.CartesianChart();
|
|
this.rbHumidity = new System.Windows.Forms.RadioButton();
|
|
this.rbTemp = new System.Windows.Forms.RadioButton();
|
|
this.groupBox1 = new System.Windows.Forms.GroupBox();
|
|
this.rbVelocity = new System.Windows.Forms.RadioButton();
|
|
this.rbForce = new System.Windows.Forms.RadioButton();
|
|
this.groupBox1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// trendChart
|
|
//
|
|
this.trendChart.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.trendChart.Location = new System.Drawing.Point(8, 59);
|
|
this.trendChart.Name = "trendChart";
|
|
this.trendChart.Size = new System.Drawing.Size(742, 603);
|
|
this.trendChart.TabIndex = 0;
|
|
this.trendChart.Text = "trendChart";
|
|
this.trendChart.UpdaterTick += new LiveCharts.Events.UpdaterTickHandler(this.trendChart_UpdaterTick);
|
|
//
|
|
// rbHumidity
|
|
//
|
|
this.rbHumidity.Appearance = System.Windows.Forms.Appearance.Button;
|
|
this.rbHumidity.AutoSize = true;
|
|
this.rbHumidity.Checked = true;
|
|
this.rbHumidity.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
|
this.rbHumidity.Location = new System.Drawing.Point(6, 19);
|
|
this.rbHumidity.Name = "rbHumidity";
|
|
this.rbHumidity.Size = new System.Drawing.Size(66, 24);
|
|
this.rbHumidity.TabIndex = 1;
|
|
this.rbHumidity.TabStop = true;
|
|
this.rbHumidity.Text = "Humidity";
|
|
this.rbHumidity.UseVisualStyleBackColor = true;
|
|
this.rbHumidity.CheckedChanged += new System.EventHandler(this.rbHumidity_CheckedChanged);
|
|
//
|
|
// rbTemp
|
|
//
|
|
this.rbTemp.Appearance = System.Windows.Forms.Appearance.Button;
|
|
this.rbTemp.AutoSize = true;
|
|
this.rbTemp.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
|
this.rbTemp.Location = new System.Drawing.Point(76, 20);
|
|
this.rbTemp.Name = "rbTemp";
|
|
this.rbTemp.Size = new System.Drawing.Size(89, 24);
|
|
this.rbTemp.TabIndex = 1;
|
|
this.rbTemp.Text = "Temperature";
|
|
this.rbTemp.UseVisualStyleBackColor = true;
|
|
this.rbTemp.CheckedChanged += new System.EventHandler(this.rbTemp_CheckedChanged);
|
|
//
|
|
// groupBox1
|
|
//
|
|
this.groupBox1.Controls.Add(this.rbHumidity);
|
|
this.groupBox1.Controls.Add(this.rbVelocity);
|
|
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.Name = "groupBox1";
|
|
this.groupBox1.Size = new System.Drawing.Size(297, 50);
|
|
this.groupBox1.TabIndex = 2;
|
|
this.groupBox1.TabStop = false;
|
|
this.groupBox1.Text = "Data";
|
|
//
|
|
// rbVelocity
|
|
//
|
|
this.rbVelocity.Appearance = System.Windows.Forms.Appearance.Button;
|
|
this.rbVelocity.AutoSize = true;
|
|
this.rbVelocity.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
|
this.rbVelocity.Location = new System.Drawing.Point(226, 19);
|
|
this.rbVelocity.Name = "rbVelocity";
|
|
this.rbVelocity.Size = new System.Drawing.Size(62, 24);
|
|
this.rbVelocity.TabIndex = 1;
|
|
this.rbVelocity.Text = "Velocity";
|
|
this.rbVelocity.UseVisualStyleBackColor = true;
|
|
this.rbVelocity.CheckedChanged += new System.EventHandler(this.rbVelocity_CheckedChanged);
|
|
//
|
|
// rbForce
|
|
//
|
|
this.rbForce.Appearance = System.Windows.Forms.Appearance.Button;
|
|
this.rbForce.AutoSize = true;
|
|
this.rbForce.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
|
this.rbForce.Location = new System.Drawing.Point(171, 20);
|
|
this.rbForce.Name = "rbForce";
|
|
this.rbForce.Size = new System.Drawing.Size(49, 24);
|
|
this.rbForce.TabIndex = 1;
|
|
this.rbForce.Text = "Force";
|
|
this.rbForce.UseVisualStyleBackColor = true;
|
|
this.rbForce.CheckedChanged += new System.EventHandler(this.rbForce_CheckedChanged);
|
|
//
|
|
// 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.groupBox1);
|
|
this.Controls.Add(this.trendChart);
|
|
this.HideOnClose = true;
|
|
this.Name = "PanelTrendGraph";
|
|
this.ShowHint = WeifenLuo.WinFormsUI.Docking.DockState.Document;
|
|
this.TabText = "Trend Graph";
|
|
this.Text = "Trend Graph";
|
|
this.groupBox1.ResumeLayout(false);
|
|
this.groupBox1.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private LiveCharts.WinForms.CartesianChart trendChart;
|
|
private System.Windows.Forms.RadioButton rbHumidity;
|
|
private System.Windows.Forms.RadioButton rbTemp;
|
|
private System.Windows.Forms.GroupBox groupBox1;
|
|
private System.Windows.Forms.RadioButton rbVelocity;
|
|
private System.Windows.Forms.RadioButton rbForce;
|
|
}
|
|
} |