1 namespace CatLog 2 { 3 partial class SelectPortDialog 4 { 5 /// <summary> 6 /// Required designer variable. 7 /// </summary> 8 private System.ComponentModel.IContainer components = null; 9 10 /// <summary> 11 /// Clean up any resources being used. 12 /// </summary> 13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> Dispose(bool disposing)14 protected override void Dispose(bool disposing) 15 { 16 if (disposing && (components != null)) 17 { 18 components.Dispose(); 19 } 20 base.Dispose(disposing); 21 } 22 23 #region Windows Form Designer generated code 24 25 /// <summary> 26 /// Required method for Designer support - do not modify 27 /// the contents of this method with the code editor. 28 /// </summary> InitializeComponent()29 private void InitializeComponent() 30 { 31 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SelectPortDialog)); 32 this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel(); 33 this.cmbPorts = new System.Windows.Forms.ComboBox(); 34 this.btnOK = new System.Windows.Forms.Button(); 35 this.btnCancel = new System.Windows.Forms.Button(); 36 this.flowLayoutPanel1.SuspendLayout(); 37 this.SuspendLayout(); 38 // 39 // flowLayoutPanel1 40 // 41 this.flowLayoutPanel1.Controls.Add(this.cmbPorts); 42 this.flowLayoutPanel1.Controls.Add(this.btnOK); 43 this.flowLayoutPanel1.Controls.Add(this.btnCancel); 44 this.flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill; 45 this.flowLayoutPanel1.Location = new System.Drawing.Point(0, 0); 46 this.flowLayoutPanel1.Name = "flowLayoutPanel1"; 47 this.flowLayoutPanel1.Size = new System.Drawing.Size(434, 27); 48 this.flowLayoutPanel1.TabIndex = 0; 49 // 50 // cmbPorts 51 // 52 this.cmbPorts.Dock = System.Windows.Forms.DockStyle.Fill; 53 this.cmbPorts.FormattingEnabled = true; 54 this.cmbPorts.Location = new System.Drawing.Point(3, 3); 55 this.cmbPorts.MaximumSize = new System.Drawing.Size(10000, 0); 56 this.cmbPorts.Name = "cmbPorts"; 57 this.cmbPorts.Size = new System.Drawing.Size(266, 21); 58 this.cmbPorts.TabIndex = 0; 59 // 60 // btnOK 61 // 62 this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK; 63 this.btnOK.Location = new System.Drawing.Point(275, 3); 64 this.btnOK.Name = "btnOK"; 65 this.btnOK.Size = new System.Drawing.Size(75, 23); 66 this.btnOK.TabIndex = 1; 67 this.btnOK.Text = "OK"; 68 this.btnOK.UseVisualStyleBackColor = true; 69 // 70 // btnCancel 71 // 72 this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; 73 this.btnCancel.Location = new System.Drawing.Point(356, 3); 74 this.btnCancel.Name = "btnCancel"; 75 this.btnCancel.Size = new System.Drawing.Size(75, 23); 76 this.btnCancel.TabIndex = 2; 77 this.btnCancel.Text = "Cancel"; 78 this.btnCancel.UseVisualStyleBackColor = true; 79 // 80 // SelectPortDialog 81 // 82 this.AccessibleRole = System.Windows.Forms.AccessibleRole.Dialog; 83 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 84 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 85 this.ClientSize = new System.Drawing.Size(434, 27); 86 this.Controls.Add(this.flowLayoutPanel1); 87 this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); 88 this.Name = "SelectPortDialog"; 89 this.Text = "Select Port..."; 90 this.flowLayoutPanel1.ResumeLayout(false); 91 this.ResumeLayout(false); 92 93 } 94 95 #endregion 96 97 private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1; 98 private System.Windows.Forms.ComboBox cmbPorts; 99 private System.Windows.Forms.Button btnOK; 100 private System.Windows.Forms.Button btnCancel; 101 } 102 } 103