namespace Example.LFR.CS.CameraA
{
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.toolStripContainer1 = new System.Windows.Forms.ToolStripContainer();
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
this.panelClu = new System.Windows.Forms.Panel();
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
this.CBCameras = new System.Windows.Forms.ToolStripComboBox();
this.panelCtrl = new System.Windows.Forms.FlowLayoutPanel();
this.butStartVideo = new System.Windows.Forms.Button();
this.butStopVideo = new System.Windows.Forms.Button();
this.trackBarFocus = new System.Windows.Forms.TrackBar();
this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
this.toolStripContainer1.ContentPanel.SuspendLayout();
this.toolStripContainer1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
this.splitContainer1.Panel1.SuspendLayout();
this.splitContainer1.Panel2.SuspendLayout();
this.splitContainer1.SuspendLayout();
this.panelClu.SuspendLayout();
this.toolStrip1.SuspendLayout();
this.panelCtrl.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.trackBarFocus)).BeginInit();
this.SuspendLayout();
//
// toolStripContainer1
//
//
// toolStripContainer1.ContentPanel
//
this.toolStripContainer1.ContentPanel.Controls.Add(this.splitContainer1);
this.toolStripContainer1.ContentPanel.Size = new System.Drawing.Size(453, 244);
this.toolStripContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
this.toolStripContainer1.Location = new System.Drawing.Point(0, 0);
this.toolStripContainer1.Name = "toolStripContainer1";
this.toolStripContainer1.Size = new System.Drawing.Size(453, 269);
this.toolStripContainer1.TabIndex = 2;
this.toolStripContainer1.Text = "toolStripContainer1";
//
// splitContainer1
//
this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
this.splitContainer1.Location = new System.Drawing.Point(0, 0);
this.splitContainer1.Name = "splitContainer1";
this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
//
// splitContainer1.Panel1
//
this.splitContainer1.Panel1.Controls.Add(this.panelClu);
//
// splitContainer1.Panel2
//
this.splitContainer1.Panel2.Controls.Add(this.panelCtrl);
this.splitContainer1.Size = new System.Drawing.Size(453, 244);
this.splitContainer1.SplitterDistance = 172;
this.splitContainer1.TabIndex = 0;
//
// panelClu
//
this.panelClu.Controls.Add(this.toolStrip1);
this.panelClu.Dock = System.Windows.Forms.DockStyle.Fill;
this.panelClu.Location = new System.Drawing.Point(0, 0);
this.panelClu.Name = "panelClu";
this.panelClu.Size = new System.Drawing.Size(453, 172);
this.panelClu.TabIndex = 0;
//
// toolStrip1
//
this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.CBCameras});
this.toolStrip1.Location = new System.Drawing.Point(0, 0);
this.toolStrip1.Name = "toolStrip1";
this.toolStrip1.Size = new System.Drawing.Size(453, 25);
this.toolStrip1.TabIndex = 0;
this.toolStrip1.Text = "toolStrip1";
//
// CBCameras
//
this.CBCameras.Name = "CBCameras";
this.CBCameras.Size = new System.Drawing.Size(200, 25);
this.CBCameras.SelectedIndexChanged += new System.EventHandler(this.CBCameras_SelectedIndexChanged);
//
// panelCtrl
//
this.panelCtrl.Controls.Add(this.butStartVideo);
this.panelCtrl.Controls.Add(this.butStopVideo);
this.panelCtrl.Controls.Add(this.trackBarFocus);
this.panelCtrl.Dock = System.Windows.Forms.DockStyle.Fill;
this.panelCtrl.Location = new System.Drawing.Point(0, 0);
this.panelCtrl.Name = "panelCtrl";
this.panelCtrl.Size = new System.Drawing.Size(453, 68);
this.panelCtrl.TabIndex = 0;
//
// butStartVideo
//
this.butStartVideo.Location = new System.Drawing.Point(3, 3);
this.butStartVideo.Name = "butStartVideo";
this.butStartVideo.Size = new System.Drawing.Size(75, 23);
this.butStartVideo.TabIndex = 0;
this.butStartVideo.Text = "Start";
this.butStartVideo.UseVisualStyleBackColor = true;
this.butStartVideo.Click += new System.EventHandler(this.butStartVideo_Click);
//
// butStopVideo
//
this.butStopVideo.Enabled = false;
this.butStopVideo.Location = new System.Drawing.Point(84, 3);
this.butStopVideo.Name = "butStopVideo";
this.butStopVideo.Size = new System.Drawing.Size(75, 23);
this.butStopVideo.TabIndex = 1;
this.butStopVideo.Text = "Stop";
this.butStopVideo.UseVisualStyleBackColor = true;
this.butStopVideo.Click += new System.EventHandler(this.butStopVideo_Click);
//
// trackBarFocus
//
this.trackBarFocus.Dock = System.Windows.Forms.DockStyle.Bottom;
this.trackBarFocus.Location = new System.Drawing.Point(3, 32);
this.trackBarFocus.Maximum = 100;
this.trackBarFocus.Name = "trackBarFocus";
this.trackBarFocus.Size = new System.Drawing.Size(450, 45);
this.trackBarFocus.TabIndex = 2;
//
// openFileDialog
//
this.openFileDialog.FileName = "openFileDialog";
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(453, 269);
this.Controls.Add(this.toolStripContainer1);
this.Name = "MainForm";
this.Text = "Raytrix C# MGPU Camera Example";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
this.Shown += new System.EventHandler(this.MainForm_Shown);
this.toolStripContainer1.ContentPanel.ResumeLayout(false);
this.toolStripContainer1.ResumeLayout(false);
this.toolStripContainer1.PerformLayout();
this.splitContainer1.Panel1.ResumeLayout(false);
this.splitContainer1.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
this.splitContainer1.ResumeLayout(false);
this.panelClu.ResumeLayout(false);
this.panelClu.PerformLayout();
this.toolStrip1.ResumeLayout(false);
this.toolStrip1.PerformLayout();
this.panelCtrl.ResumeLayout(false);
this.panelCtrl.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.trackBarFocus)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.ToolStripContainer toolStripContainer1;
private System.Windows.Forms.SplitContainer splitContainer1;
private System.Windows.Forms.Panel panelClu;
private System.Windows.Forms.ToolStrip toolStrip1;
private System.Windows.Forms.ToolStripComboBox CBCameras;
private System.Windows.Forms.FlowLayoutPanel panelCtrl;
private System.Windows.Forms.Button butStartVideo;
private System.Windows.Forms.Button butStopVideo;
private System.Windows.Forms.TrackBar trackBarFocus;
private System.Windows.Forms.OpenFileDialog openFileDialog;
}
}