reactosdbg/RosDBG/SerialTargetSelect.Designer.cs
Christoph von Wittich 3066145e63 -add categories to settings dialog
-allow to change the defaultPipeName
-some small UI improvements

svn path=/trunk/tools/reactosdbg/; revision=789
2008-08-20 05:49:00 +00:00

134 lines
5.4 KiB
C#

namespace RosDBG
{
partial class SerialTargetSelect
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.cPort = new System.Windows.Forms.ComboBox();
this.cBaud = new System.Windows.Forms.ComboBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.bCancel = new System.Windows.Forms.Button();
this.bOK = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// cPort
//
this.cPort.FormattingEnabled = true;
this.cPort.Location = new System.Drawing.Point(77, 9);
this.cPort.Name = "cPort";
this.cPort.Size = new System.Drawing.Size(121, 21);
this.cPort.TabIndex = 0;
//
// cBaud
//
this.cBaud.FormattingEnabled = true;
this.cBaud.Items.AddRange(new object[] {
"9600",
"19200",
"38400",
"57600",
"115200"});
this.cBaud.Location = new System.Drawing.Point(77, 48);
this.cBaud.Name = "cBaud";
this.cBaud.Size = new System.Drawing.Size(121, 21);
this.cBaud.TabIndex = 1;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(39, 12);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(26, 13);
this.label1.TabIndex = 5;
this.label1.Text = "Port";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(39, 51);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(32, 13);
this.label2.TabIndex = 6;
this.label2.Text = "Baud";
//
// bCancel
//
this.bCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.bCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.bCancel.Location = new System.Drawing.Point(150, 90);
this.bCancel.Name = "bCancel";
this.bCancel.Size = new System.Drawing.Size(75, 23);
this.bCancel.TabIndex = 4;
this.bCancel.Text = "Cancel";
this.bCancel.UseVisualStyleBackColor = true;
this.bCancel.Click += new System.EventHandler(this.bCancel_Click);
//
// bOK
//
this.bOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.bOK.DialogResult = System.Windows.Forms.DialogResult.OK;
this.bOK.Location = new System.Drawing.Point(69, 90);
this.bOK.Name = "bOK";
this.bOK.Size = new System.Drawing.Size(75, 23);
this.bOK.TabIndex = 3;
this.bOK.Text = "OK";
this.bOK.UseVisualStyleBackColor = true;
this.bOK.Click += new System.EventHandler(this.bOK_Click);
//
// SerialTargetSelect
//
this.AcceptButton = this.bOK;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.bCancel;
this.ClientSize = new System.Drawing.Size(237, 125);
this.Controls.Add(this.bOK);
this.Controls.Add(this.bCancel);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.cBaud);
this.Controls.Add(this.cPort);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Name = "SerialTargetSelect";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Serial";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ComboBox cPort;
private System.Windows.Forms.ComboBox cBaud;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Button bCancel;
private System.Windows.Forms.Button bOK;
}
}