namespace DIO { partial class Form1 { /// /// 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.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.labelCardName = new System.Windows.Forms.Label(); this.label4 = new System.Windows.Forms.Label(); this.comboBoxPort = new System.Windows.Forms.ComboBox(); this.label5 = new System.Windows.Forms.Label(); this.label6 = new System.Windows.Forms.Label(); this.label7 = new System.Windows.Forms.Label(); this.textBoxOutputA = new System.Windows.Forms.TextBox(); this.textBoxInputA = new System.Windows.Forms.TextBox(); this.textBoxInputB = new System.Windows.Forms.TextBox(); this.label8 = new System.Windows.Forms.Label(); this.textBoxStatus = new System.Windows.Forms.TextBox(); this.btnPerformIO = new System.Windows.Forms.Button(); this.btnExit = new System.Windows.Forms.Button(); this.SuspendLayout(); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(169, 9); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(116, 13); this.label1.TabIndex = 0; this.label1.Text = "Windows 8255 Sample"; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(13, 47); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(63, 13); this.label2.TabIndex = 1; this.label2.Text = "Card Name:"; // // labelCardName // this.labelCardName.AutoSize = true; this.labelCardName.Location = new System.Drawing.Point(81, 47); this.labelCardName.Name = "labelCardName"; this.labelCardName.Size = new System.Drawing.Size(28, 13); this.labelCardName.TabIndex = 2; this.labelCardName.Text = "card"; // // label4 // this.label4.AutoSize = true; this.label4.Location = new System.Drawing.Point(63, 78); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(102, 13); this.label4.TabIndex = 3; this.label4.Text = "Select a port to use:"; // // comboBoxPort // this.comboBoxPort.FormattingEnabled = true; this.comboBoxPort.Location = new System.Drawing.Point(166, 74); this.comboBoxPort.Name = "comboBoxPort"; this.comboBoxPort.Size = new System.Drawing.Size(223, 21); this.comboBoxPort.TabIndex = 4; this.comboBoxPort.SelectedIndexChanged += new System.EventHandler(this.comboBoxPort_SelectedIndexChanged); // // label5 // this.label5.AutoSize = true; this.label5.Location = new System.Drawing.Point(60, 129); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(71, 13); this.label5.TabIndex = 5; this.label5.Text = "Port A Output"; // // label6 // this.label6.AutoSize = true; this.label6.Location = new System.Drawing.Point(197, 129); this.label6.Name = "label6"; this.label6.Size = new System.Drawing.Size(63, 13); this.label6.TabIndex = 6; this.label6.Text = "Port A Input"; // // label7 // this.label7.AutoSize = true; this.label7.Location = new System.Drawing.Point(326, 129); this.label7.Name = "label7"; this.label7.Size = new System.Drawing.Size(63, 13); this.label7.TabIndex = 7; this.label7.Text = "Port B Input"; // // textBoxOutputA // this.textBoxOutputA.Location = new System.Drawing.Point(44, 164); this.textBoxOutputA.Name = "textBoxOutputA"; this.textBoxOutputA.Size = new System.Drawing.Size(100, 20); this.textBoxOutputA.TabIndex = 8; // // textBoxInputA // this.textBoxInputA.Location = new System.Drawing.Point(179, 164); this.textBoxInputA.Name = "textBoxInputA"; this.textBoxInputA.Size = new System.Drawing.Size(100, 20); this.textBoxInputA.TabIndex = 9; // // textBoxInputB // this.textBoxInputB.Location = new System.Drawing.Point(316, 164); this.textBoxInputB.Name = "textBoxInputB"; this.textBoxInputB.Size = new System.Drawing.Size(100, 20); this.textBoxInputB.TabIndex = 10; // // label8 // this.label8.AutoSize = true; this.label8.Location = new System.Drawing.Point(16, 204); this.label8.Name = "label8"; this.label8.Size = new System.Drawing.Size(40, 13); this.label8.TabIndex = 11; this.label8.Text = "Status:"; // // textBoxStatus // this.textBoxStatus.Location = new System.Drawing.Point(19, 230); this.textBoxStatus.Multiline = true; this.textBoxStatus.Name = "textBoxStatus"; this.textBoxStatus.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; this.textBoxStatus.Size = new System.Drawing.Size(436, 88); this.textBoxStatus.TabIndex = 12; // // btnPerformIO // this.btnPerformIO.Location = new System.Drawing.Point(19, 330); this.btnPerformIO.Name = "btnPerformIO"; this.btnPerformIO.Size = new System.Drawing.Size(75, 23); this.btnPerformIO.TabIndex = 13; this.btnPerformIO.Text = "Perform I/O"; this.btnPerformIO.UseVisualStyleBackColor = true; this.btnPerformIO.Click += new System.EventHandler(this.btnPerformIO_Click); // // btnExit // this.btnExit.Location = new System.Drawing.Point(380, 329); this.btnExit.Name = "btnExit"; this.btnExit.Size = new System.Drawing.Size(75, 23); this.btnExit.TabIndex = 14; this.btnExit.Text = "Exit Program"; this.btnExit.UseVisualStyleBackColor = true; this.btnExit.Click += new System.EventHandler(this.btnExit_Click); // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(474, 359); this.Controls.Add(this.btnExit); this.Controls.Add(this.btnPerformIO); this.Controls.Add(this.textBoxStatus); this.Controls.Add(this.label8); this.Controls.Add(this.textBoxInputB); this.Controls.Add(this.textBoxInputA); this.Controls.Add(this.textBoxOutputA); this.Controls.Add(this.label7); this.Controls.Add(this.label6); this.Controls.Add(this.label5); this.Controls.Add(this.comboBoxPort); this.Controls.Add(this.label4); this.Controls.Add(this.labelCardName); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.Name = "Form1"; this.Text = "DIO Sample"; this.Load += new System.EventHandler(this.Form1_Load); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label label1; private System.Windows.Forms.Label label2; private System.Windows.Forms.Label labelCardName; private System.Windows.Forms.Label label4; private System.Windows.Forms.ComboBox comboBoxPort; private System.Windows.Forms.Label label5; private System.Windows.Forms.Label label6; private System.Windows.Forms.Label label7; private System.Windows.Forms.TextBox textBoxOutputA; private System.Windows.Forms.TextBox textBoxInputA; private System.Windows.Forms.TextBox textBoxInputB; private System.Windows.Forms.Label label8; private System.Windows.Forms.TextBox textBoxStatus; private System.Windows.Forms.Button btnPerformIO; private System.Windows.Forms.Button btnExit; } }