reactosdbg/RosDBG/TCPTargetSelect.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

145 lines
5.9 KiB
C#

namespace RosDBG
{
partial class TCPTargetSelect
{
/// <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.HostChoice = new System.Windows.Forms.ComboBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.PortNumber = new System.Windows.Forms.NumericUpDown();
this.CancelBtn = new System.Windows.Forms.Button();
this.OKBtn = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.PortNumber)).BeginInit();
this.SuspendLayout();
//
// HostChoice
//
this.HostChoice.FormattingEnabled = true;
this.HostChoice.Location = new System.Drawing.Point(47, 9);
this.HostChoice.Name = "HostChoice";
this.HostChoice.Size = new System.Drawing.Size(164, 21);
this.HostChoice.TabIndex = 0;
this.HostChoice.Text = "localhost";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 12);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(29, 13);
this.label1.TabIndex = 1;
this.label1.Text = "Host";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(12, 49);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(26, 13);
this.label2.TabIndex = 2;
this.label2.Text = "Port";
//
// PortNumber
//
this.PortNumber.Location = new System.Drawing.Point(47, 47);
this.PortNumber.Maximum = new decimal(new int[] {
65535,
0,
0,
0});
this.PortNumber.Minimum = new decimal(new int[] {
1,
0,
0,
0});
this.PortNumber.Name = "PortNumber";
this.PortNumber.Size = new System.Drawing.Size(80, 20);
this.PortNumber.TabIndex = 3;
this.PortNumber.Value = new decimal(new int[] {
1235,
0,
0,
0});
//
// CancelBtn
//
this.CancelBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.CancelBtn.Location = new System.Drawing.Point(150, 90);
this.CancelBtn.Name = "CancelBtn";
this.CancelBtn.Size = new System.Drawing.Size(75, 23);
this.CancelBtn.TabIndex = 4;
this.CancelBtn.Text = "Cancel";
this.CancelBtn.UseVisualStyleBackColor = true;
this.CancelBtn.Click += new System.EventHandler(this.CancelButton_Click);
//
// OKBtn
//
this.OKBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.OKBtn.DialogResult = System.Windows.Forms.DialogResult.OK;
this.OKBtn.Location = new System.Drawing.Point(69, 90);
this.OKBtn.Name = "OKBtn";
this.OKBtn.Size = new System.Drawing.Size(75, 23);
this.OKBtn.TabIndex = 5;
this.OKBtn.Text = "OK";
this.OKBtn.UseVisualStyleBackColor = true;
this.OKBtn.Click += new System.EventHandler(this.OKButton_Click);
//
// TCPTargetSelect
//
this.AcceptButton = this.OKBtn;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.CancelBtn;
this.ClientSize = new System.Drawing.Size(237, 125);
this.Controls.Add(this.OKBtn);
this.Controls.Add(this.CancelBtn);
this.Controls.Add(this.PortNumber);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.HostChoice);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Name = "TCPTargetSelect";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "TCP/IP";
((System.ComponentModel.ISupportInitialize)(this.PortNumber)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ComboBox HostChoice;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.NumericUpDown PortNumber;
private System.Windows.Forms.Button CancelBtn;
private System.Windows.Forms.Button OKBtn;
}
}