namespace Sample1 { 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.btnCount0 = new System.Windows.Forms.Button(); this.btnCount1 = new System.Windows.Forms.Button(); this.trackBar0 = new System.Windows.Forms.TrackBar(); this.trackBar1 = new System.Windows.Forms.TrackBar(); this.label1 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.lblCount0 = new System.Windows.Forms.Label(); this.lblCount1 = new System.Windows.Forms.Label(); this.label16 = new System.Windows.Forms.Label(); this.btnDevice = new System.Windows.Forms.Button(); this.btnCountAll = new System.Windows.Forms.Button(); ((System.ComponentModel.ISupportInitialize)(this.trackBar0)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.trackBar1)).BeginInit(); this.SuspendLayout(); // // btnCount0 // this.btnCount0.Location = new System.Drawing.Point(637, 38); this.btnCount0.Name = "btnCount0"; this.btnCount0.Size = new System.Drawing.Size(111, 23); this.btnCount0.TabIndex = 124; this.btnCount0.Tag = "0"; this.btnCount0.Text = "Set Output 0"; this.btnCount0.UseVisualStyleBackColor = true; this.btnCount0.Click += new System.EventHandler(this.btnCount_Click); // // btnCount1 // this.btnCount1.Location = new System.Drawing.Point(637, 81); this.btnCount1.Name = "btnCount1"; this.btnCount1.Size = new System.Drawing.Size(111, 23); this.btnCount1.TabIndex = 125; this.btnCount1.Tag = "1"; this.btnCount1.Text = "Set Output 1"; this.btnCount1.UseVisualStyleBackColor = true; this.btnCount1.Click += new System.EventHandler(this.btnCount_Click); // // trackBar0 // this.trackBar0.Location = new System.Drawing.Point(95, 32); this.trackBar0.Maximum = 65535; this.trackBar0.Name = "trackBar0"; this.trackBar0.Size = new System.Drawing.Size(446, 42); this.trackBar0.TabIndex = 127; this.trackBar0.Tag = "0"; this.trackBar0.TickFrequency = 1024; this.trackBar0.Scroll += new System.EventHandler(this.trackBarCount_Scroll); // // trackBar1 // this.trackBar1.Location = new System.Drawing.Point(94, 75); this.trackBar1.Maximum = 65535; this.trackBar1.Name = "trackBar1"; this.trackBar1.Size = new System.Drawing.Size(447, 42); this.trackBar1.TabIndex = 128; this.trackBar1.Tag = "1"; this.trackBar1.TickFrequency = 1024; this.trackBar1.Scroll += new System.EventHandler(this.trackBarCount_Scroll); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(8, 38); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(55, 13); this.label1.TabIndex = 130; this.label1.Text = "Channel 0"; // // label3 // this.label3.AutoSize = true; this.label3.Location = new System.Drawing.Point(8, 79); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(55, 13); this.label3.TabIndex = 131; this.label3.Text = "Channel 1"; // // lblCount0 // this.lblCount0.AutoSize = true; this.lblCount0.Location = new System.Drawing.Point(537, 40); this.lblCount0.Name = "lblCount0"; this.lblCount0.Size = new System.Drawing.Size(65, 13); this.lblCount0.TabIndex = 135; this.lblCount0.Tag = "0"; this.lblCount0.Text = "DAC Counts"; // // lblCount1 // this.lblCount1.AutoSize = true; this.lblCount1.Location = new System.Drawing.Point(537, 84); this.lblCount1.Name = "lblCount1"; this.lblCount1.Size = new System.Drawing.Size(65, 13); this.lblCount1.TabIndex = 136; this.lblCount1.Tag = "1"; this.lblCount1.Text = "DAC Counts"; // // label16 // this.label16.AutoSize = true; this.label16.Location = new System.Drawing.Point(236, 16); this.label16.Name = "label16"; this.label16.Size = new System.Drawing.Size(162, 13); this.label16.TabIndex = 148; this.label16.Text = "2 Channel Analog Output Control"; // // btnDevice // this.btnDevice.Location = new System.Drawing.Point(251, 133); this.btnDevice.Name = "btnDevice"; this.btnDevice.Size = new System.Drawing.Size(170, 23); this.btnDevice.TabIndex = 172; this.btnDevice.Text = "Device select"; this.btnDevice.UseVisualStyleBackColor = true; this.btnDevice.Click += new System.EventHandler(this.btnDevice_Click_1); // // btnCountAll // this.btnCountAll.Location = new System.Drawing.Point(637, 133); this.btnCountAll.Name = "btnCountAll"; this.btnCountAll.Size = new System.Drawing.Size(112, 23); this.btnCountAll.TabIndex = 185; this.btnCountAll.Text = "Update All"; this.btnCountAll.UseVisualStyleBackColor = true; this.btnCountAll.Click += new System.EventHandler(this.btnUpdateAll_Click); // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(766, 173); this.Controls.Add(this.btnCountAll); this.Controls.Add(this.btnDevice); this.Controls.Add(this.label16); this.Controls.Add(this.lblCount1); this.Controls.Add(this.lblCount0); this.Controls.Add(this.label3); this.Controls.Add(this.label1); this.Controls.Add(this.trackBar1); this.Controls.Add(this.trackBar0); this.Controls.Add(this.btnCount1); this.Controls.Add(this.btnCount0); this.MaximizeBox = false; this.Name = "Form1"; this.Tag = "0"; this.Text = "USB-AIO DAC Visual C# Sample1"; this.Load += new System.EventHandler(this.Form1_Load); ((System.ComponentModel.ISupportInitialize)(this.trackBar0)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.trackBar1)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Button btnCount0; private System.Windows.Forms.Button btnCount1; private System.Windows.Forms.TrackBar trackBar0; private System.Windows.Forms.TrackBar trackBar1; private System.Windows.Forms.Label label1; private System.Windows.Forms.Label label3; private System.Windows.Forms.Label lblCount0; private System.Windows.Forms.Label lblCount1; private System.Windows.Forms.Label label16; private System.Windows.Forms.Button btnDevice; private System.Windows.Forms.Button btnCountAll; } }