namespace Example.LFR.CS.BasicB
{
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.buttonLoadImage = new System.Windows.Forms.Button();
this.buttonCalculateDepth = new System.Windows.Forms.Button();
this.buttonCalculateDistance = new System.Windows.Forms.Button();
this.labelDistance = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// buttonLoadImage
//
this.buttonLoadImage.Location = new System.Drawing.Point(12, 13);
this.buttonLoadImage.Name = "buttonLoadImage";
this.buttonLoadImage.Size = new System.Drawing.Size(165, 46);
this.buttonLoadImage.TabIndex = 0;
this.buttonLoadImage.Text = "Load Image";
this.buttonLoadImage.UseVisualStyleBackColor = true;
this.buttonLoadImage.Click += new System.EventHandler(this.buttonLoadImage_Click);
//
// buttonCalculateDepth
//
this.buttonCalculateDepth.Enabled = false;
this.buttonCalculateDepth.Location = new System.Drawing.Point(198, 13);
this.buttonCalculateDepth.Name = "buttonCalculateDepth";
this.buttonCalculateDepth.Size = new System.Drawing.Size(165, 46);
this.buttonCalculateDepth.TabIndex = 1;
this.buttonCalculateDepth.Text = "Calculate Depth";
this.buttonCalculateDepth.UseVisualStyleBackColor = true;
this.buttonCalculateDepth.Click += new System.EventHandler(this.buttonCalculateDepth_Click);
//
// buttonCalculateDistance
//
this.buttonCalculateDistance.Enabled = false;
this.buttonCalculateDistance.Location = new System.Drawing.Point(380, 13);
this.buttonCalculateDistance.Name = "buttonCalculateDistance";
this.buttonCalculateDistance.Size = new System.Drawing.Size(165, 46);
this.buttonCalculateDistance.TabIndex = 2;
this.buttonCalculateDistance.Text = "Calculate Distance";
this.buttonCalculateDistance.UseVisualStyleBackColor = true;
this.buttonCalculateDistance.Click += new System.EventHandler(this.buttonCalculateDistance_Click);
//
// labelDistance
//
this.labelDistance.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.labelDistance.AutoSize = true;
this.labelDistance.Location = new System.Drawing.Point(9, 71);
this.labelDistance.Name = "labelDistance";
this.labelDistance.RightToLeft = System.Windows.Forms.RightToLeft.No;
this.labelDistance.Size = new System.Drawing.Size(49, 13);
this.labelDistance.TabIndex = 3;
this.labelDistance.Text = "Distance";
this.labelDistance.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(557, 93);
this.Controls.Add(this.labelDistance);
this.Controls.Add(this.buttonCalculateDistance);
this.Controls.Add(this.buttonCalculateDepth);
this.Controls.Add(this.buttonLoadImage);
this.Name = "MainForm";
this.Text = "Raytrix Example MGPU Basic B";
this.Shown += new System.EventHandler(this.MainForm_Shown);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button buttonLoadImage;
private System.Windows.Forms.Button buttonCalculateDepth;
private System.Windows.Forms.Button buttonCalculateDistance;
private System.Windows.Forms.Label labelDistance;
}
}