221 lines
9.6 KiB
C#
221 lines
9.6 KiB
C#
namespace TestBed.Net
|
|
{
|
|
partial class MainWindow
|
|
{
|
|
/// <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();
|
|
this.panel1 = new System.Windows.Forms.Panel();
|
|
this.OpenGLControl = new Tao.Platform.Windows.SimpleOpenGlControl();
|
|
this.panel2 = new System.Windows.Forms.Panel();
|
|
this.label3 = new System.Windows.Forms.Label();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.numericUpDown2 = new System.Windows.Forms.NumericUpDown();
|
|
this.numericUpDown1 = new System.Windows.Forms.NumericUpDown();
|
|
this.checkBox2 = new System.Windows.Forms.CheckBox();
|
|
this.checkBox1 = new System.Windows.Forms.CheckBox();
|
|
this.TestsComboBox = new System.Windows.Forms.ComboBox();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.RedrawTimer = new System.Windows.Forms.Timer(this.components);
|
|
this.panel1.SuspendLayout();
|
|
this.panel2.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.numericUpDown2)).BeginInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// panel1
|
|
//
|
|
this.panel1.Controls.Add(this.OpenGLControl);
|
|
this.panel1.Location = new System.Drawing.Point(12, 12);
|
|
this.panel1.Name = "panel1";
|
|
this.panel1.Size = new System.Drawing.Size(372, 242);
|
|
this.panel1.TabIndex = 3;
|
|
//
|
|
// OpenGLControl
|
|
//
|
|
this.OpenGLControl.AccumBits = ((byte)(0));
|
|
this.OpenGLControl.AutoCheckErrors = true;
|
|
this.OpenGLControl.AutoFinish = true;
|
|
this.OpenGLControl.AutoMakeCurrent = true;
|
|
this.OpenGLControl.AutoSwapBuffers = true;
|
|
this.OpenGLControl.BackColor = System.Drawing.Color.Black;
|
|
this.OpenGLControl.ColorBits = ((byte)(32));
|
|
this.OpenGLControl.DepthBits = ((byte)(16));
|
|
this.OpenGLControl.Location = new System.Drawing.Point(106, 62);
|
|
this.OpenGLControl.Name = "OpenGLControl";
|
|
this.OpenGLControl.Size = new System.Drawing.Size(137, 103);
|
|
this.OpenGLControl.StencilBits = ((byte)(0));
|
|
this.OpenGLControl.TabIndex = 1;
|
|
this.OpenGLControl.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.OpenGLControl_PreviewKeyDown);
|
|
this.OpenGLControl.MouseDown += new System.Windows.Forms.MouseEventHandler(this.OpenGLControl_MouseDown);
|
|
this.OpenGLControl.MouseMove += new System.Windows.Forms.MouseEventHandler(this.OpenGLControl_MouseMove);
|
|
this.OpenGLControl.MouseUp += new System.Windows.Forms.MouseEventHandler(this.OpenGLControl_MouseUp);
|
|
//
|
|
// panel2
|
|
//
|
|
this.panel2.Controls.Add(this.label3);
|
|
this.panel2.Controls.Add(this.label2);
|
|
this.panel2.Controls.Add(this.numericUpDown2);
|
|
this.panel2.Controls.Add(this.numericUpDown1);
|
|
this.panel2.Controls.Add(this.checkBox2);
|
|
this.panel2.Controls.Add(this.checkBox1);
|
|
this.panel2.Controls.Add(this.TestsComboBox);
|
|
this.panel2.Controls.Add(this.label1);
|
|
this.panel2.Location = new System.Drawing.Point(390, 12);
|
|
this.panel2.Name = "panel2";
|
|
this.panel2.Size = new System.Drawing.Size(170, 242);
|
|
this.panel2.TabIndex = 4;
|
|
//
|
|
// label3
|
|
//
|
|
this.label3.AutoSize = true;
|
|
this.label3.Location = new System.Drawing.Point(18, 81);
|
|
this.label3.Name = "label3";
|
|
this.label3.Size = new System.Drawing.Size(32, 13);
|
|
this.label3.TabIndex = 10;
|
|
this.label3.Text = "Hertz";
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Location = new System.Drawing.Point(18, 55);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(50, 13);
|
|
this.label2.TabIndex = 9;
|
|
this.label2.Text = "Iterations";
|
|
//
|
|
// numericUpDown2
|
|
//
|
|
this.numericUpDown2.Location = new System.Drawing.Point(71, 79);
|
|
this.numericUpDown2.Name = "numericUpDown2";
|
|
this.numericUpDown2.Size = new System.Drawing.Size(71, 20);
|
|
this.numericUpDown2.TabIndex = 8;
|
|
this.numericUpDown2.Value = new decimal(new int[] {
|
|
60,
|
|
0,
|
|
0,
|
|
0});
|
|
//
|
|
// numericUpDown1
|
|
//
|
|
this.numericUpDown1.Location = new System.Drawing.Point(71, 53);
|
|
this.numericUpDown1.Name = "numericUpDown1";
|
|
this.numericUpDown1.Size = new System.Drawing.Size(71, 20);
|
|
this.numericUpDown1.TabIndex = 7;
|
|
this.numericUpDown1.Value = new decimal(new int[] {
|
|
60,
|
|
0,
|
|
0,
|
|
0});
|
|
//
|
|
// checkBox2
|
|
//
|
|
this.checkBox2.AutoSize = true;
|
|
this.checkBox2.Checked = true;
|
|
this.checkBox2.CheckState = System.Windows.Forms.CheckState.Checked;
|
|
this.checkBox2.Location = new System.Drawing.Point(21, 128);
|
|
this.checkBox2.Name = "checkBox2";
|
|
this.checkBox2.Size = new System.Drawing.Size(93, 17);
|
|
this.checkBox2.TabIndex = 6;
|
|
this.checkBox2.Text = "Warm Starting";
|
|
this.checkBox2.UseVisualStyleBackColor = true;
|
|
//
|
|
// checkBox1
|
|
//
|
|
this.checkBox1.AutoSize = true;
|
|
this.checkBox1.Checked = true;
|
|
this.checkBox1.CheckState = System.Windows.Forms.CheckState.Checked;
|
|
this.checkBox1.Location = new System.Drawing.Point(21, 105);
|
|
this.checkBox1.Name = "checkBox1";
|
|
this.checkBox1.Size = new System.Drawing.Size(114, 17);
|
|
this.checkBox1.TabIndex = 5;
|
|
this.checkBox1.Text = "Position Correction";
|
|
this.checkBox1.UseVisualStyleBackColor = true;
|
|
//
|
|
// TestsComboBox
|
|
//
|
|
this.TestsComboBox.FormattingEnabled = true;
|
|
this.TestsComboBox.Location = new System.Drawing.Point(21, 26);
|
|
this.TestsComboBox.Name = "TestsComboBox";
|
|
this.TestsComboBox.Size = new System.Drawing.Size(121, 21);
|
|
this.TestsComboBox.TabIndex = 3;
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(67, 10);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(33, 13);
|
|
this.label1.TabIndex = 4;
|
|
this.label1.Text = "Tests";
|
|
//
|
|
// RedrawTimer
|
|
//
|
|
this.RedrawTimer.Enabled = true;
|
|
this.RedrawTimer.Interval = 30;
|
|
this.RedrawTimer.Tag = "";
|
|
this.RedrawTimer.Tick += new System.EventHandler(this.RedrawTimer_Tick);
|
|
//
|
|
// MainWindow
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(572, 457);
|
|
this.Controls.Add(this.panel2);
|
|
this.Controls.Add(this.panel1);
|
|
this.Name = "MainWindow";
|
|
this.Text = "MainWindow";
|
|
this.Resize += new System.EventHandler(this.MainWindow_Resize);
|
|
this.Load += new System.EventHandler(this.MainWindow_Load);
|
|
this.panel1.ResumeLayout(false);
|
|
this.panel2.ResumeLayout(false);
|
|
this.panel2.PerformLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.numericUpDown2)).EndInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Panel panel1;
|
|
private Tao.Platform.Windows.SimpleOpenGlControl OpenGLControl;
|
|
private System.Windows.Forms.Panel panel2;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.ComboBox TestsComboBox;
|
|
private System.Windows.Forms.Timer RedrawTimer;
|
|
private System.Windows.Forms.CheckBox checkBox2;
|
|
private System.Windows.Forms.CheckBox checkBox1;
|
|
private System.Windows.Forms.NumericUpDown numericUpDown2;
|
|
private System.Windows.Forms.NumericUpDown numericUpDown1;
|
|
private System.Windows.Forms.Label label3;
|
|
private System.Windows.Forms.Label label2;
|
|
|
|
|
|
}
|
|
}
|