using System;
using System.Windows.Forms;
namespace Raw2ICogImage_CSharp
{
partial class Form1 : Form
{
///
/// 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(Form1));
this.bnEnum = new System.Windows.Forms.Button();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.bnTriggerExec = new System.Windows.Forms.Button();
this.cbSoftTrigger = new System.Windows.Forms.CheckBox();
this.bnStopGrab = new System.Windows.Forms.Button();
this.bnStartGrab = new System.Windows.Forms.Button();
this.bnTriggerMode = new System.Windows.Forms.RadioButton();
this.bnContinuesMode = new System.Windows.Forms.RadioButton();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.bnClose = new System.Windows.Forms.Button();
this.bnOpen = new System.Windows.Forms.Button();
this.cbDeviceList = new System.Windows.Forms.ComboBox();
this.cogDisplayImage = new Cognex.VisionPro.Display.CogDisplay();
this.groupBox2.SuspendLayout();
this.groupBox1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.cogDisplayImage)).BeginInit();
this.SuspendLayout();
//
// bnEnum
//
resources.ApplyResources(this.bnEnum, "bnEnum");
this.bnEnum.Name = "bnEnum";
this.bnEnum.UseVisualStyleBackColor = true;
this.bnEnum.Click += new System.EventHandler(this.bnEnum_Click);
//
// groupBox2
//
this.groupBox2.Controls.Add(this.bnTriggerExec);
this.groupBox2.Controls.Add(this.cbSoftTrigger);
this.groupBox2.Controls.Add(this.bnStopGrab);
this.groupBox2.Controls.Add(this.bnStartGrab);
this.groupBox2.Controls.Add(this.bnTriggerMode);
this.groupBox2.Controls.Add(this.bnContinuesMode);
resources.ApplyResources(this.groupBox2, "groupBox2");
this.groupBox2.Name = "groupBox2";
this.groupBox2.TabStop = false;
//
// bnTriggerExec
//
resources.ApplyResources(this.bnTriggerExec, "bnTriggerExec");
this.bnTriggerExec.Name = "bnTriggerExec";
this.bnTriggerExec.UseVisualStyleBackColor = true;
this.bnTriggerExec.Click += new System.EventHandler(this.bnTriggerExec_Click);
//
// cbSoftTrigger
//
resources.ApplyResources(this.cbSoftTrigger, "cbSoftTrigger");
this.cbSoftTrigger.Name = "cbSoftTrigger";
this.cbSoftTrigger.UseVisualStyleBackColor = true;
this.cbSoftTrigger.CheckedChanged += new System.EventHandler(this.cbSoftTrigger_CheckedChanged);
//
// bnStopGrab
//
resources.ApplyResources(this.bnStopGrab, "bnStopGrab");
this.bnStopGrab.Name = "bnStopGrab";
this.bnStopGrab.UseVisualStyleBackColor = true;
this.bnStopGrab.Click += new System.EventHandler(this.bnStopGrab_Click);
//
// bnStartGrab
//
resources.ApplyResources(this.bnStartGrab, "bnStartGrab");
this.bnStartGrab.Name = "bnStartGrab";
this.bnStartGrab.UseVisualStyleBackColor = true;
this.bnStartGrab.Click += new System.EventHandler(this.bnStartGrab_Click);
//
// bnTriggerMode
//
resources.ApplyResources(this.bnTriggerMode, "bnTriggerMode");
this.bnTriggerMode.Name = "bnTriggerMode";
this.bnTriggerMode.TabStop = true;
this.bnTriggerMode.UseVisualStyleBackColor = true;
this.bnTriggerMode.CheckedChanged += new System.EventHandler(this.bnTriggerMode_CheckedChanged);
//
// bnContinuesMode
//
resources.ApplyResources(this.bnContinuesMode, "bnContinuesMode");
this.bnContinuesMode.Name = "bnContinuesMode";
this.bnContinuesMode.TabStop = true;
this.bnContinuesMode.UseVisualStyleBackColor = true;
this.bnContinuesMode.CheckedChanged += new System.EventHandler(this.bnContinuesMode_CheckedChanged);
//
// groupBox1
//
this.groupBox1.Controls.Add(this.bnClose);
this.groupBox1.Controls.Add(this.bnOpen);
this.groupBox1.Controls.Add(this.bnEnum);
resources.ApplyResources(this.groupBox1, "groupBox1");
this.groupBox1.Name = "groupBox1";
this.groupBox1.TabStop = false;
//
// bnClose
//
resources.ApplyResources(this.bnClose, "bnClose");
this.bnClose.Name = "bnClose";
this.bnClose.UseVisualStyleBackColor = true;
this.bnClose.Click += new System.EventHandler(this.bnClose_Click);
//
// bnOpen
//
resources.ApplyResources(this.bnOpen, "bnOpen");
this.bnOpen.Name = "bnOpen";
this.bnOpen.UseVisualStyleBackColor = true;
this.bnOpen.Click += new System.EventHandler(this.bnOpen_Click);
//
// cbDeviceList
//
this.cbDeviceList.FormattingEnabled = true;
resources.ApplyResources(this.cbDeviceList, "cbDeviceList");
this.cbDeviceList.Name = "cbDeviceList";
//
// cogDisplayImage
//
this.cogDisplayImage.ColorMapLowerClipColor = System.Drawing.Color.Black;
this.cogDisplayImage.ColorMapLowerRoiLimit = 0D;
this.cogDisplayImage.ColorMapPredefined = Cognex.VisionPro.Display.CogDisplayColorMapPredefinedConstants.None;
this.cogDisplayImage.ColorMapUpperClipColor = System.Drawing.Color.Black;
this.cogDisplayImage.ColorMapUpperRoiLimit = 1D;
resources.ApplyResources(this.cogDisplayImage, "cogDisplayImage");
this.cogDisplayImage.MouseWheelMode = Cognex.VisionPro.Display.CogDisplayMouseWheelModeConstants.Zoom1;
this.cogDisplayImage.MouseWheelSensitivity = 1D;
this.cogDisplayImage.Name = "cogDisplayImage";
this.cogDisplayImage.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("cogDisplayImage.OcxState")));
//
// Form1
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.cogDisplayImage);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.cbDeviceList);
this.Name = "Form1";
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.groupBox1.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.cogDisplayImage)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button bnEnum;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.Button bnTriggerExec;
private System.Windows.Forms.CheckBox cbSoftTrigger;
private System.Windows.Forms.Button bnStopGrab;
private System.Windows.Forms.Button bnStartGrab;
private System.Windows.Forms.RadioButton bnTriggerMode;
private System.Windows.Forms.RadioButton bnContinuesMode;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.Button bnClose;
private System.Windows.Forms.Button bnOpen;
private System.Windows.Forms.ComboBox cbDeviceList;
private Cognex.VisionPro.Display.CogDisplay cogDisplayImage;
}
}