root/lang/csharp/Criw-0/ConnectionForm.Designer.cs

Revision 1736, 12.2 kB (checked in by mayuki, 14 months ago)

lang/csharp: WZERO3などで動くIRCクライアントのサンプル実装 Criw-0 を追加。

  • Property svn:keywords set to Id
Line 
1namespace Misuzilla.Applications.Mobile.Criw0
2{
3    partial class ConnectionForm
4    {
5        /// <summary>
6        /// 必要なデザイナ変数です。
7        /// </summary>
8        private System.ComponentModel.IContainer components = null;
9
10        /// <summary>
11        /// 使用中のリソースをすべてクリーンアップします。
12        /// </summary>
13        /// <param name="disposing">マネージ リソースが破棄される場合 true、破棄されない場合は false です。</param>
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 フォーム デザイナで生成されたコード
24
25        /// <summary>
26        /// デザイナ サポートに必要なメソッドです。このメソッドの内容を
27        /// コード エディタで変更しないでください。
28        /// </summary>
29        private void InitializeComponent()
30        {
31            this.label1 = new System.Windows.Forms.Label();
32            this.label2 = new System.Windows.Forms.Label();
33            this.label3 = new System.Windows.Forms.Label();
34            this.numPort = new System.Windows.Forms.NumericUpDown();
35            this.textHost = new System.Windows.Forms.TextBox();
36            this.label4 = new System.Windows.Forms.Label();
37            this.textUserName = new System.Windows.Forms.TextBox();
38            this.textPassword = new System.Windows.Forms.TextBox();
39            this.textNickname = new System.Windows.Forms.TextBox();
40            this.textUserInfo = new System.Windows.Forms.TextBox();
41            this.label5 = new System.Windows.Forms.Label();
42            this.label6 = new System.Windows.Forms.Label();
43            this.label8 = new System.Windows.Forms.Label();
44            this.comboConnectionName = new System.Windows.Forms.ComboBox();
45            this.mainMenu = new System.Windows.Forms.MainMenu();
46            this.menuItemSave = new System.Windows.Forms.MenuItem();
47            this.menuItemClose = new System.Windows.Forms.MenuItem();
48            this.buttonAutoJoin = new System.Windows.Forms.Button();
49            this.SuspendLayout();
50            //
51            // label1
52            //
53            this.label1.Location = new System.Drawing.Point(0, 70);
54            this.label1.Name = "label1";
55            this.label1.Size = new System.Drawing.Size(167, 32);
56            this.label1.Text = "ホスト名(&H):";
57            this.label1.TextAlign = System.Drawing.ContentAlignment.TopRight;
58            //
59            // label2
60            //
61            this.label2.Location = new System.Drawing.Point(-1, 112);
62            this.label2.Name = "label2";
63            this.label2.Size = new System.Drawing.Size(168, 32);
64            this.label2.Text = "ポート番号(&P):";
65            this.label2.TextAlign = System.Drawing.ContentAlignment.TopRight;
66            //
67            // label3
68            //
69            this.label3.Location = new System.Drawing.Point(-1, 23);
70            this.label3.Name = "label3";
71            this.label3.Size = new System.Drawing.Size(168, 32);
72            this.label3.Text = "接続名(&N):";
73            this.label3.TextAlign = System.Drawing.ContentAlignment.TopRight;
74            //
75            // numPort
76            //
77            this.numPort.Location = new System.Drawing.Point(172, 108);
78            this.numPort.Maximum = new decimal(new int[] {
79            65535,
80            0,
81            0,
82            0});
83            this.numPort.Name = "numPort";
84            this.numPort.Size = new System.Drawing.Size(129, 36);
85            this.numPort.TabIndex = 3;
86            this.numPort.Value = new decimal(new int[] {
87            6667,
88            0,
89            0,
90            0});
91            //
92            // textHost
93            //
94            this.textHost.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
95                        | System.Windows.Forms.AnchorStyles.Right)));
96            this.textHost.Location = new System.Drawing.Point(172, 61);
97            this.textHost.Name = "textHost";
98            this.textHost.Size = new System.Drawing.Size(465, 41);
99            this.textHost.TabIndex = 2;
100            //
101            // label4
102            //
103            this.label4.Location = new System.Drawing.Point(-1, 159);
104            this.label4.Name = "label4";
105            this.label4.Size = new System.Drawing.Size(168, 32);
106            this.label4.Text = "ユーザ名(&U):";
107            this.label4.TextAlign = System.Drawing.ContentAlignment.TopRight;
108            //
109            // textUserName
110            //
111            this.textUserName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
112                        | System.Windows.Forms.AnchorStyles.Right)));
113            this.textUserName.Location = new System.Drawing.Point(172, 150);
114            this.textUserName.Name = "textUserName";
115            this.textUserName.Size = new System.Drawing.Size(156, 41);
116            this.textUserName.TabIndex = 4;
117            //
118            // textPassword
119            //
120            this.textPassword.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
121                        | System.Windows.Forms.AnchorStyles.Right)));
122            this.textPassword.Location = new System.Drawing.Point(491, 150);
123            this.textPassword.Name = "textPassword";
124            this.textPassword.PasswordChar = '*';
125            this.textPassword.Size = new System.Drawing.Size(146, 41);
126            this.textPassword.TabIndex = 5;
127            //
128            // textNickname
129            //
130            this.textNickname.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
131                        | System.Windows.Forms.AnchorStyles.Right)));
132            this.textNickname.Location = new System.Drawing.Point(172, 197);
133            this.textNickname.Name = "textNickname";
134            this.textNickname.Size = new System.Drawing.Size(156, 41);
135            this.textNickname.TabIndex = 6;
136            //
137            // textUserInfo
138            //
139            this.textUserInfo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
140                        | System.Windows.Forms.AnchorStyles.Right)));
141            this.textUserInfo.Location = new System.Drawing.Point(172, 244);
142            this.textUserInfo.Name = "textUserInfo";
143            this.textUserInfo.Size = new System.Drawing.Size(465, 41);
144            this.textUserInfo.TabIndex = 7;
145            this.textUserInfo.Text = "Criw-0 User";
146            //
147            // label5
148            //
149            this.label5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
150            this.label5.Location = new System.Drawing.Point(334, 159);
151            this.label5.Name = "label5";
152            this.label5.Size = new System.Drawing.Size(158, 32);
153            this.label5.Text = "パスワード(&P):";
154            //
155            // label6
156            //
157            this.label6.Location = new System.Drawing.Point(-10, 206);
158            this.label6.Name = "label6";
159            this.label6.Size = new System.Drawing.Size(177, 32);
160            this.label6.Text = "ニックネーム(&N):";
161            this.label6.TextAlign = System.Drawing.ContentAlignment.TopRight;
162            //
163            // label8
164            //
165            this.label8.Location = new System.Drawing.Point(-1, 253);
166            this.label8.Name = "label8";
167            this.label8.Size = new System.Drawing.Size(168, 32);
168            this.label8.Text = "ユーザの情報:";
169            this.label8.TextAlign = System.Drawing.ContentAlignment.TopRight;
170            //
171            // comboConnectionName
172            //
173            this.comboConnectionName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
174                        | System.Windows.Forms.AnchorStyles.Right)));
175            this.comboConnectionName.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDown;
176            this.comboConnectionName.Location = new System.Drawing.Point(172, 13);
177            this.comboConnectionName.Name = "comboConnectionName";
178            this.comboConnectionName.Size = new System.Drawing.Size(465, 41);
179            this.comboConnectionName.TabIndex = 1;
180            //
181            // mainMenu
182            //
183            this.mainMenu.MenuItems.Add(this.menuItemSave);
184            this.mainMenu.MenuItems.Add(this.menuItemClose);
185            //
186            // menuItemSave
187            //
188            this.menuItemSave.Text = "保存(&S)";
189            this.menuItemSave.Click += new System.EventHandler(this.menuItemSave_Click);
190            //
191            // menuItemClose
192            //
193            this.menuItemClose.Text = "閉じる(&C)";
194            this.menuItemClose.Click += new System.EventHandler(this.menuItemClose_Click);
195            //
196            // buttonAutoJoin
197            //
198            this.buttonAutoJoin.Location = new System.Drawing.Point(313, 319);
199            this.buttonAutoJoin.Name = "buttonAutoJoin";
200            this.buttonAutoJoin.Size = new System.Drawing.Size(324, 40);
201            this.buttonAutoJoin.TabIndex = 12;
202            this.buttonAutoJoin.Text = "接続時の自動参加設定";
203            this.buttonAutoJoin.Click += new System.EventHandler(this.buttonAutoJoin_Click);
204            //
205            // ConnectionForm
206            //
207            this.AutoScaleDimensions = new System.Drawing.SizeF(192F, 192F);
208            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
209            this.ClientSize = new System.Drawing.Size(640, 376);
210            this.Controls.Add(this.textPassword);
211            this.Controls.Add(this.textNickname);
212            this.Controls.Add(this.buttonAutoJoin);
213            this.Controls.Add(this.comboConnectionName);
214            this.Controls.Add(this.label8);
215            this.Controls.Add(this.label6);
216            this.Controls.Add(this.label5);
217            this.Controls.Add(this.textUserInfo);
218            this.Controls.Add(this.textUserName);
219            this.Controls.Add(this.label4);
220            this.Controls.Add(this.textHost);
221            this.Controls.Add(this.numPort);
222            this.Controls.Add(this.label3);
223            this.Controls.Add(this.label2);
224            this.Controls.Add(this.label1);
225            this.Location = new System.Drawing.Point(0, 52);
226            this.Menu = this.mainMenu;
227            this.Name = "ConnectionForm";
228            this.Text = "接続の設定 - Criw";
229            this.ResumeLayout(false);
230
231        }
232
233        #endregion
234
235        private System.Windows.Forms.Label label1;
236        private System.Windows.Forms.Label label2;
237        private System.Windows.Forms.Label label3;
238        private System.Windows.Forms.NumericUpDown numPort;
239        private System.Windows.Forms.TextBox textHost;
240        private System.Windows.Forms.Label label4;
241        private System.Windows.Forms.TextBox textUserName;
242        private System.Windows.Forms.TextBox textPassword;
243        private System.Windows.Forms.TextBox textNickname;
244        private System.Windows.Forms.TextBox textUserInfo;
245        private System.Windows.Forms.Label label5;
246        private System.Windows.Forms.Label label6;
247        private System.Windows.Forms.Label label8;
248        private System.Windows.Forms.ComboBox comboConnectionName;
249        private System.Windows.Forms.MainMenu mainMenu;
250        private System.Windows.Forms.MenuItem menuItemSave;
251        private System.Windows.Forms.MenuItem menuItemClose;
252        private System.Windows.Forms.Button buttonAutoJoin;
253    }
254}
Note: See TracBrowser for help on using the browser.