namespace ChartingTestBed { partial class StripChartTestFW { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(StripChartTestFW)); this.stripChart = new NationalInstruments.UI.WindowsForms.WaveformGraph(); this.waveformPlot1 = new NationalInstruments.UI.WaveformPlot(); this.xAxis1 = new NationalInstruments.UI.XAxis(); this.yAxis1 = new NationalInstruments.UI.YAxis(); this.dataFeedTimer = new System.Windows.Forms.Timer(this.components); this.startBtn = new System.Windows.Forms.Button(); this.stopBtn = new System.Windows.Forms.Button(); this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.updateRateCtrl = new System.Windows.Forms.NumericUpDown(); this.nevronChartCtrl = new Nevron.Chart.WinForm.NChartControl(); ((System.ComponentModel.ISupportInitialize)(this.stripChart)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.updateRateCtrl)).BeginInit(); this.SuspendLayout(); // // stripChart // this.stripChart.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.stripChart.Location = new System.Drawing.Point(12, 7); this.stripChart.Name = "stripChart"; this.stripChart.Plots.AddRange(new NationalInstruments.UI.WaveformPlot[] { this.waveformPlot1}); this.stripChart.Size = new System.Drawing.Size(499, 208); this.stripChart.TabIndex = 0; this.stripChart.XAxes.AddRange(new NationalInstruments.UI.XAxis[] { this.xAxis1}); this.stripChart.YAxes.AddRange(new NationalInstruments.UI.YAxis[] { this.yAxis1}); // // waveformPlot1 // this.waveformPlot1.XAxis = this.xAxis1; this.waveformPlot1.YAxis = this.yAxis1; // // dataFeedTimer // this.dataFeedTimer.Tick += new System.EventHandler(this.dataFeedTimer_Tick); // // startBtn // this.startBtn.Anchor = System.Windows.Forms.AnchorStyles.Bottom; this.startBtn.Location = new System.Drawing.Point(311, 407); this.startBtn.Name = "startBtn"; this.startBtn.Size = new System.Drawing.Size(46, 23); this.startBtn.TabIndex = 1; this.startBtn.Text = "Start"; this.startBtn.UseVisualStyleBackColor = true; this.startBtn.Click += new System.EventHandler(this.startBtn_Click); // // stopBtn // this.stopBtn.Anchor = System.Windows.Forms.AnchorStyles.Bottom; this.stopBtn.Location = new System.Drawing.Point(363, 407); this.stopBtn.Name = "stopBtn"; this.stopBtn.Size = new System.Drawing.Size(54, 23); this.stopBtn.TabIndex = 2; this.stopBtn.Text = "Stop"; this.stopBtn.UseVisualStyleBackColor = true; this.stopBtn.Click += new System.EventHandler(this.stopBtn_Click); // // label1 // this.label1.Anchor = System.Windows.Forms.AnchorStyles.Bottom; this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(106, 412); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(111, 13); this.label1.TabIndex = 4; this.label1.Text = "Data feed update rate"; // // label2 // this.label2.Anchor = System.Windows.Forms.AnchorStyles.Bottom; this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(284, 412); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(20, 13); this.label2.TabIndex = 5; this.label2.Text = "ms"; // // updateRateCtrl // this.updateRateCtrl.Anchor = System.Windows.Forms.AnchorStyles.Bottom; this.updateRateCtrl.Increment = new decimal(new int[] { 10, 0, 0, 0}); this.updateRateCtrl.Location = new System.Drawing.Point(223, 410); this.updateRateCtrl.Maximum = new decimal(new int[] { 9999, 0, 0, 0}); this.updateRateCtrl.Name = "updateRateCtrl"; this.updateRateCtrl.Size = new System.Drawing.Size(54, 20); this.updateRateCtrl.TabIndex = 6; this.updateRateCtrl.Value = new decimal(new int[] { 100, 0, 0, 0}); this.updateRateCtrl.ValueChanged += new System.EventHandler(this.updateRateCtrl_ValueChanged); // // nevronChartCtrl // this.nevronChartCtrl.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.nevronChartCtrl.AutoRefresh = false; this.nevronChartCtrl.BackColor = System.Drawing.SystemColors.Control; this.nevronChartCtrl.InputKeys = new System.Windows.Forms.Keys[0]; this.nevronChartCtrl.Location = new System.Drawing.Point(12, 221); this.nevronChartCtrl.Name = "nevronChartCtrl"; this.nevronChartCtrl.Size = new System.Drawing.Size(499, 179); this.nevronChartCtrl.State = ((Nevron.Chart.WinForm.NState)(resources.GetObject("nevronChartCtrl.State"))); this.nevronChartCtrl.TabIndex = 7; this.nevronChartCtrl.Text = "nChartControl1"; // // StripChartTestFW // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(535, 438); this.Controls.Add(this.nevronChartCtrl); this.Controls.Add(this.updateRateCtrl); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.Controls.Add(this.stopBtn); this.Controls.Add(this.startBtn); this.Controls.Add(this.stripChart); this.Name = "StripChartTestFW"; this.Text = "Strip chart evaluation"; ((System.ComponentModel.ISupportInitialize)(this.stripChart)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.updateRateCtrl)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private NationalInstruments.UI.WindowsForms.WaveformGraph stripChart; private NationalInstruments.UI.WaveformPlot waveformPlot1; private NationalInstruments.UI.XAxis xAxis1; private NationalInstruments.UI.YAxis yAxis1; private System.Windows.Forms.Timer dataFeedTimer; private System.Windows.Forms.Button startBtn; private System.Windows.Forms.Button stopBtn; private System.Windows.Forms.Label label1; private System.Windows.Forms.Label label2; private System.Windows.Forms.NumericUpDown updateRateCtrl; private Nevron.Chart.WinForm.NChartControl nevronChartCtrl; } }