![]() |
Sylloge
A C# helper library
|
00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 namespace Sylloge.Controls 00017 { 00018 partial class Serial 00019 { 00023 private System.ComponentModel.IContainer components = null; 00024 00029 protected override void Dispose(bool disposing) 00030 { 00031 if (disposing && (components != null)) { 00032 components.Dispose(); 00033 } 00034 base.Dispose(disposing); 00035 } 00036 00037 #region Component Designer generated code 00038 00043 private void InitializeComponent() 00044 { 00045 this.c_LabelComPort = new System.Windows.Forms.Label(); 00046 this.c_ComboBoxComPort = new System.Windows.Forms.ComboBox(); 00047 this.c_ComboBoxBaudRate = new System.Windows.Forms.ComboBox(); 00048 this.c_LabelBaudRate = new System.Windows.Forms.Label(); 00049 this.SuspendLayout(); 00050 // 00051 // c_LabelComPort 00052 // 00053 this.c_LabelComPort.AutoSize = true; 00054 this.c_LabelComPort.Location = new System.Drawing.Point(3, 5); 00055 this.c_LabelComPort.Name = "c_LabelComPort"; 00056 this.c_LabelComPort.Size = new System.Drawing.Size(56, 13); 00057 this.c_LabelComPort.TabIndex = 0; 00058 this.c_LabelComPort.Text = "COM Port:"; 00059 // 00060 // c_ComboBoxComPort 00061 // 00062 this.c_ComboBoxComPort.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; 00063 this.c_ComboBoxComPort.FlatStyle = System.Windows.Forms.FlatStyle.Flat; 00064 this.c_ComboBoxComPort.FormattingEnabled = true; 00065 this.c_ComboBoxComPort.Location = new System.Drawing.Point(58, 2); 00066 this.c_ComboBoxComPort.Name = "c_ComboBoxComPort"; 00067 this.c_ComboBoxComPort.Size = new System.Drawing.Size(56, 21); 00068 this.c_ComboBoxComPort.Sorted = true; 00069 this.c_ComboBoxComPort.TabIndex = 1; 00070 this.c_ComboBoxComPort.SelectedIndexChanged += new System.EventHandler(this.c_ComboBoxComPort_SelectedIndexChanged); 00071 // 00072 // c_ComboBoxBaudRate 00073 // 00074 this.c_ComboBoxBaudRate.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; 00075 this.c_ComboBoxBaudRate.FlatStyle = System.Windows.Forms.FlatStyle.Flat; 00076 this.c_ComboBoxBaudRate.FormattingEnabled = true; 00077 this.c_ComboBoxBaudRate.Items.AddRange(new object[] { 00078 "110", 00079 "300", 00080 "1200", 00081 "2400", 00082 "4800", 00083 "9600", 00084 "19200", 00085 "38400", 00086 "57600", 00087 "115200", 00088 "230400", 00089 "460800", 00090 "921600"}); 00091 this.c_ComboBoxBaudRate.Location = new System.Drawing.Point(180, 2); 00092 this.c_ComboBoxBaudRate.Name = "c_ComboBoxBaudRate"; 00093 this.c_ComboBoxBaudRate.Size = new System.Drawing.Size(59, 21); 00094 this.c_ComboBoxBaudRate.TabIndex = 2; 00095 this.c_ComboBoxBaudRate.SelectedIndexChanged += new System.EventHandler(this.c_ComboBoxBaudRate_SelectedIndexChanged); 00096 // 00097 // c_LabelBaudRate 00098 // 00099 this.c_LabelBaudRate.AutoSize = true; 00100 this.c_LabelBaudRate.Location = new System.Drawing.Point(120, 5); 00101 this.c_LabelBaudRate.Name = "c_LabelBaudRate"; 00102 this.c_LabelBaudRate.Size = new System.Drawing.Size(61, 13); 00103 this.c_LabelBaudRate.TabIndex = 3; 00104 this.c_LabelBaudRate.Text = "Baud Rate:"; 00105 // 00106 // u_Serial 00107 // 00108 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 00109 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None; 00110 this.Controls.Add(this.c_ComboBoxBaudRate); 00111 this.Controls.Add(this.c_LabelBaudRate); 00112 this.Controls.Add(this.c_ComboBoxComPort); 00113 this.Controls.Add(this.c_LabelComPort); 00114 this.Name = "u_Serial"; 00115 this.Size = new System.Drawing.Size(241, 25); 00116 this.ResumeLayout(false); 00117 this.PerformLayout(); 00118 00119 } 00120 00121 #endregion 00122 00123 private System.Windows.Forms.Label c_LabelComPort; 00124 private System.Windows.Forms.ComboBox c_ComboBoxComPort; 00125 private System.Windows.Forms.ComboBox c_ComboBoxBaudRate; 00126 private System.Windows.Forms.Label c_LabelBaudRate; 00127 } 00128 }
1.7.4