namespace Azimuth.PerformanceTests { partial class MainForm { /// /// 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.progressBar = new System.Windows.Forms.ProgressBar(); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.BisectionRadio = new System.Windows.Forms.RadioButton(); this.radioButton3 = new System.Windows.Forms.RadioButton(); this.LinearLeastSquaresRadio = new System.Windows.Forms.RadioButton(); this.QRDecompositionRadio = new System.Windows.Forms.RadioButton(); this.StartTest = new System.Windows.Forms.Button(); this.progressLabel = new System.Windows.Forms.Label(); this.groupBox1.SuspendLayout(); this.SuspendLayout(); // // progressBar // this.progressBar.Dock = System.Windows.Forms.DockStyle.Bottom; this.progressBar.Location = new System.Drawing.Point(0, 340); this.progressBar.Name = "progressBar"; this.progressBar.Size = new System.Drawing.Size(209, 23); this.progressBar.TabIndex = 0; // // groupBox1 // this.groupBox1.Controls.Add(this.BisectionRadio); this.groupBox1.Controls.Add(this.radioButton3); this.groupBox1.Controls.Add(this.LinearLeastSquaresRadio); this.groupBox1.Controls.Add(this.QRDecompositionRadio); this.groupBox1.Location = new System.Drawing.Point(12, 12); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(184, 123); this.groupBox1.TabIndex = 5; this.groupBox1.TabStop = false; this.groupBox1.Text = "Test"; // // BisectionRadio // this.BisectionRadio.AutoSize = true; this.BisectionRadio.Location = new System.Drawing.Point(6, 42); this.BisectionRadio.Name = "BisectionRadio"; this.BisectionRadio.Size = new System.Drawing.Size(131, 17); this.BisectionRadio.TabIndex = 8; this.BisectionRadio.TabStop = true; this.BisectionRadio.Text = "Bisection Root Finding"; this.BisectionRadio.UseVisualStyleBackColor = true; // // radioButton3 // this.radioButton3.AutoSize = true; this.radioButton3.Location = new System.Drawing.Point(6, 65); this.radioButton3.Name = "radioButton3"; this.radioButton3.Size = new System.Drawing.Size(85, 17); this.radioButton3.TabIndex = 7; this.radioButton3.TabStop = true; this.radioButton3.Text = "radioButton3"; this.radioButton3.UseVisualStyleBackColor = true; this.radioButton3.Visible = false; // // LinearLeastSquaresRadio // this.LinearLeastSquaresRadio.AutoSize = true; this.LinearLeastSquaresRadio.Location = new System.Drawing.Point(6, 88); this.LinearLeastSquaresRadio.Name = "LinearLeastSquaresRadio"; this.LinearLeastSquaresRadio.Size = new System.Drawing.Size(125, 17); this.LinearLeastSquaresRadio.TabIndex = 6; this.LinearLeastSquaresRadio.TabStop = true; this.LinearLeastSquaresRadio.Text = "Linear Least Squares"; this.LinearLeastSquaresRadio.UseVisualStyleBackColor = true; // // QRDecompositionRadio // this.QRDecompositionRadio.AutoSize = true; this.QRDecompositionRadio.Location = new System.Drawing.Point(6, 19); this.QRDecompositionRadio.Name = "QRDecompositionRadio"; this.QRDecompositionRadio.Size = new System.Drawing.Size(114, 17); this.QRDecompositionRadio.TabIndex = 5; this.QRDecompositionRadio.TabStop = true; this.QRDecompositionRadio.Text = "QR Decomposition"; this.QRDecompositionRadio.UseVisualStyleBackColor = true; // // StartTest // this.StartTest.Location = new System.Drawing.Point(12, 141); this.StartTest.Name = "StartTest"; this.StartTest.Size = new System.Drawing.Size(75, 23); this.StartTest.TabIndex = 6; this.StartTest.Text = "Start test"; this.StartTest.UseVisualStyleBackColor = true; this.StartTest.Click += new System.EventHandler(this.StartTest_Click); // // progressLabel // this.progressLabel.AutoSize = true; this.progressLabel.Location = new System.Drawing.Point(124, 146); this.progressLabel.Name = "progressLabel"; this.progressLabel.Size = new System.Drawing.Size(0, 13); this.progressLabel.TabIndex = 7; // // MainForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(209, 363); this.Controls.Add(this.progressLabel); this.Controls.Add(this.StartTest); this.Controls.Add(this.groupBox1); this.Controls.Add(this.progressBar); this.Name = "MainForm"; this.Text = "Azimuth performance tester"; this.groupBox1.ResumeLayout(false); this.groupBox1.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.ProgressBar progressBar; private System.Windows.Forms.GroupBox groupBox1; private System.Windows.Forms.RadioButton BisectionRadio; private System.Windows.Forms.RadioButton radioButton3; private System.Windows.Forms.RadioButton LinearLeastSquaresRadio; private System.Windows.Forms.RadioButton QRDecompositionRadio; private System.Windows.Forms.Button StartTest; private System.Windows.Forms.Label progressLabel; } }