Upstream tarball 20080414
[amule.git] / src / remote-gui.net / ConnectDlg.Designer.cs
blob8406a135872417e8bcc489f4d059d13fef648da2
1 namespace amule.net
3 partial class ConnectDlg
5 /// <summary>
6 /// Required designer variable.
7 /// </summary>
8 private System.ComponentModel.IContainer components = null;
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>
14 protected override void Dispose(bool disposing)
16 if (disposing && (components != null))
18 components.Dispose();
20 base.Dispose(disposing);
23 #region Windows Form Designer generated code
25 /// <summary>
26 /// Required method for Designer support - do not modify
27 /// the contents of this method with the code editor.
28 /// </summary>
29 private void InitializeComponent()
31 this.buttonConnect = new System.Windows.Forms.Button();
32 this.buttonCancel = new System.Windows.Forms.Button();
33 this.label1 = new System.Windows.Forms.Label();
34 this.amuleHost = new System.Windows.Forms.TextBox();
35 this.amulePwd = new System.Windows.Forms.TextBox();
36 this.label2 = new System.Windows.Forms.Label();
37 this.amulePort = new System.Windows.Forms.TextBox();
38 this.label3 = new System.Windows.Forms.Label();
39 this.SuspendLayout();
40 //
41 // buttonConnect
42 //
43 this.buttonConnect.DialogResult = System.Windows.Forms.DialogResult.OK;
44 this.buttonConnect.Location = new System.Drawing.Point(66, 190);
45 this.buttonConnect.Name = "buttonConnect";
46 this.buttonConnect.Size = new System.Drawing.Size(128, 50);
47 this.buttonConnect.TabIndex = 0;
48 this.buttonConnect.Text = "&Connect";
49 this.buttonConnect.UseVisualStyleBackColor = true;
50 //
51 // buttonCancel
52 //
53 this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
54 this.buttonCancel.Location = new System.Drawing.Point(238, 190);
55 this.buttonCancel.Name = "buttonCancel";
56 this.buttonCancel.Size = new System.Drawing.Size(128, 50);
57 this.buttonCancel.TabIndex = 1;
58 this.buttonCancel.Text = "Cancel";
59 this.buttonCancel.UseVisualStyleBackColor = true;
60 //
61 // label1
62 //
63 this.label1.AutoSize = true;
64 this.label1.Location = new System.Drawing.Point(60, 46);
65 this.label1.Name = "label1";
66 this.label1.Size = new System.Drawing.Size(59, 13);
67 this.label1.TabIndex = 2;
68 this.label1.Text = "aMule host";
69 //
70 // amuleHost
71 //
72 this.amuleHost.Location = new System.Drawing.Point(139, 43);
73 this.amuleHost.Name = "amuleHost";
74 this.amuleHost.Size = new System.Drawing.Size(112, 20);
75 this.amuleHost.TabIndex = 3;
76 this.amuleHost.Text = "leox";
77 //
78 // amulePwd
79 //
80 this.amulePwd.Location = new System.Drawing.Point(139, 106);
81 this.amulePwd.Name = "amulePwd";
82 this.amulePwd.PasswordChar = '*';
83 this.amulePwd.Size = new System.Drawing.Size(112, 20);
84 this.amulePwd.TabIndex = 5;
85 this.amulePwd.Text = "123456";
86 //
87 // label2
88 //
89 this.label2.AutoSize = true;
90 this.label2.Location = new System.Drawing.Point(60, 109);
91 this.label2.Name = "label2";
92 this.label2.Size = new System.Drawing.Size(53, 13);
93 this.label2.TabIndex = 4;
94 this.label2.Text = "Password";
95 //
96 // amulePort
97 //
98 this.amulePort.Location = new System.Drawing.Point(296, 43);
99 this.amulePort.MaxLength = 5;
100 this.amulePort.Name = "amulePort";
101 this.amulePort.Size = new System.Drawing.Size(66, 20);
102 this.amulePort.TabIndex = 7;
103 this.amulePort.Text = "4712";
105 // label3
107 this.label3.AutoSize = true;
108 this.label3.Location = new System.Drawing.Point(265, 46);
109 this.label3.Name = "label3";
110 this.label3.Size = new System.Drawing.Size(25, 13);
111 this.label3.TabIndex = 6;
112 this.label3.Text = "port";
114 // ConnectDlg
116 this.AcceptButton = this.buttonConnect;
117 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
118 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
119 this.CancelButton = this.buttonCancel;
120 this.ClientSize = new System.Drawing.Size(432, 272);
121 this.ControlBox = false;
122 this.Controls.Add(this.amulePort);
123 this.Controls.Add(this.label3);
124 this.Controls.Add(this.amulePwd);
125 this.Controls.Add(this.label2);
126 this.Controls.Add(this.amuleHost);
127 this.Controls.Add(this.label1);
128 this.Controls.Add(this.buttonCancel);
129 this.Controls.Add(this.buttonConnect);
130 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
131 this.MaximizeBox = false;
132 this.Name = "ConnectDlg";
133 this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
134 this.Text = "Connect to aMule core";
135 this.Load += new System.EventHandler(this.ConnectDlg_Load);
136 this.ResumeLayout(false);
137 this.PerformLayout();
141 #endregion
143 private System.Windows.Forms.Button buttonConnect;
144 private System.Windows.Forms.Button buttonCancel;
145 private System.Windows.Forms.Label label1;
146 private System.Windows.Forms.TextBox amuleHost;
147 private System.Windows.Forms.TextBox amulePwd;
148 private System.Windows.Forms.Label label2;
149 private System.Windows.Forms.TextBox amulePort;
150 private System.Windows.Forms.Label label3;