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

Revision 1736, 16.4 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 MainForm
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            if (_ircConnection != null && _ircConnection.IsConnected)
21            {
22                _ircConnection.Close();
23            }
24            base.Dispose(disposing);
25        }
26
27        #region Windows フォーム デザイナで生成されたコード
28
29        /// <summary>
30        /// デザイナ サポートに必要なメソッドです。このメソッドの内容を
31        /// コード エディタで変更しないでください。
32        /// </summary>
33        private void InitializeComponent()
34        {
35            this.panel1 = new System.Windows.Forms.Panel();
36            this.textAllLog = new System.Windows.Forms.TextBox();
37            this.splitter2 = new System.Windows.Forms.Splitter();
38            this.panel3 = new System.Windows.Forms.Panel();
39            this.textLog = new System.Windows.Forms.TextBox();
40            this.textInput = new System.Windows.Forms.TextBox();
41            this.splitter1 = new System.Windows.Forms.Splitter();
42            this.panel2 = new System.Windows.Forms.Panel();
43            this.listChannels = new System.Windows.Forms.ListView();
44            this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
45            this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
46            this.splitter3 = new System.Windows.Forms.Splitter();
47            this.listUsers = new System.Windows.Forms.ListBox();
48            this.mainMenu = new System.Windows.Forms.MainMenu();
49            this.menuItemNext = new System.Windows.Forms.MenuItem();
50            this.menuItemMenu = new System.Windows.Forms.MenuItem();
51            this.menuItemConnect = new System.Windows.Forms.MenuItem();
52            this.menuItemConnectServers = new System.Windows.Forms.MenuItem();
53            this.menuItemConnectForm = new System.Windows.Forms.MenuItem();
54            this.menuItemConnectSep = new System.Windows.Forms.MenuItem();
55            this.menuItemConnectDisconnect = new System.Windows.Forms.MenuItem();
56            this.menuItem5 = new System.Windows.Forms.MenuItem();
57            this.menuItemExit = new System.Windows.Forms.MenuItem();
58            this.menuItemChannel = new System.Windows.Forms.MenuItem();
59            this.menuItemChannelJoin = new System.Windows.Forms.MenuItem();
60            this.menuItemChannelPart = new System.Windows.Forms.MenuItem();
61            this.menuItem4 = new System.Windows.Forms.MenuItem();
62            this.menuItemChannelTopic = new System.Windows.Forms.MenuItem();
63            this.menuItem1 = new System.Windows.Forms.MenuItem();
64            this.menuItemChannelPrev = new System.Windows.Forms.MenuItem();
65            this.timerPing = new System.Windows.Forms.Timer();
66            this.panel1.SuspendLayout();
67            this.panel3.SuspendLayout();
68            this.panel2.SuspendLayout();
69            this.SuspendLayout();
70            //
71            // panel1
72            //
73            this.panel1.Controls.Add(this.textAllLog);
74            this.panel1.Controls.Add(this.splitter2);
75            this.panel1.Controls.Add(this.panel3);
76            this.panel1.Dock = System.Windows.Forms.DockStyle.Left;
77            this.panel1.Location = new System.Drawing.Point(0, 0);
78            this.panel1.Name = "panel1";
79            this.panel1.Size = new System.Drawing.Size(421, 376);
80            //
81            // textAllLog
82            //
83            this.textAllLog.BackColor = System.Drawing.Color.White;
84            this.textAllLog.Dock = System.Windows.Forms.DockStyle.Fill;
85            this.textAllLog.Font = new System.Drawing.Font("Tahoma", 5F, System.Drawing.FontStyle.Regular);
86            this.textAllLog.Location = new System.Drawing.Point(0, 274);
87            this.textAllLog.Multiline = true;
88            this.textAllLog.Name = "textAllLog";
89            this.textAllLog.ReadOnly = true;
90            this.textAllLog.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
91            this.textAllLog.Size = new System.Drawing.Size(421, 102);
92            this.textAllLog.TabIndex = 0;
93            //
94            // splitter2
95            //
96            this.splitter2.Dock = System.Windows.Forms.DockStyle.Top;
97            this.splitter2.Location = new System.Drawing.Point(0, 269);
98            this.splitter2.Name = "splitter2";
99            this.splitter2.Size = new System.Drawing.Size(421, 5);
100            //
101            // panel3
102            //
103            this.panel3.Controls.Add(this.textLog);
104            this.panel3.Controls.Add(this.textInput);
105            this.panel3.Dock = System.Windows.Forms.DockStyle.Top;
106            this.panel3.Location = new System.Drawing.Point(0, 0);
107            this.panel3.Name = "panel3";
108            this.panel3.Size = new System.Drawing.Size(421, 269);
109            //
110            // textLog
111            //
112            this.textLog.BackColor = System.Drawing.Color.White;
113            this.textLog.Dock = System.Windows.Forms.DockStyle.Fill;
114            this.textLog.Font = new System.Drawing.Font("Tahoma", 5F, System.Drawing.FontStyle.Regular);
115            this.textLog.Location = new System.Drawing.Point(0, 0);
116            this.textLog.Multiline = true;
117            this.textLog.Name = "textLog";
118            this.textLog.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
119            this.textLog.Size = new System.Drawing.Size(421, 228);
120            this.textLog.TabIndex = 0;
121            //
122            // textInput
123            //
124            this.textInput.Dock = System.Windows.Forms.DockStyle.Bottom;
125            this.textInput.Location = new System.Drawing.Point(0, 228);
126            this.textInput.Name = "textInput";
127            this.textInput.Size = new System.Drawing.Size(421, 41);
128            this.textInput.TabIndex = 3;
129            this.textInput.KeyUp += new System.Windows.Forms.KeyEventHandler(this.textInput_KeyUp);
130            this.textInput.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textInput_KeyPress);
131            //
132            // splitter1
133            //
134            this.splitter1.Location = new System.Drawing.Point(421, 0);
135            this.splitter1.Name = "splitter1";
136            this.splitter1.Size = new System.Drawing.Size(5, 376);
137            //
138            // panel2
139            //
140            this.panel2.Controls.Add(this.listChannels);
141            this.panel2.Controls.Add(this.splitter3);
142            this.panel2.Controls.Add(this.listUsers);
143            this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
144            this.panel2.Location = new System.Drawing.Point(426, 0);
145            this.panel2.Name = "panel2";
146            this.panel2.Size = new System.Drawing.Size(214, 376);
147            //
148            // listChannels
149            //
150            this.listChannels.Columns.Add(this.columnHeader1);
151            this.listChannels.Columns.Add(this.columnHeader2);
152            this.listChannels.Dock = System.Windows.Forms.DockStyle.Fill;
153            this.listChannels.Font = new System.Drawing.Font("Tahoma", 5F, System.Drawing.FontStyle.Regular);
154            this.listChannels.FullRowSelect = true;
155            this.listChannels.Location = new System.Drawing.Point(0, 59);
156            this.listChannels.Name = "listChannels";
157            this.listChannels.Size = new System.Drawing.Size(214, 317);
158            this.listChannels.TabIndex = 0;
159            this.listChannels.View = System.Windows.Forms.View.Details;
160            this.listChannels.SelectedIndexChanged += new System.EventHandler(this.listChannels_SelectedIndexChanged);
161            //
162            // columnHeader1
163            //
164            this.columnHeader1.Text = "チャンネル";
165            this.columnHeader1.Width = 157;
166            //
167            // columnHeader2
168            //
169            this.columnHeader2.Text = "未読";
170            this.columnHeader2.Width = 53;
171            //
172            // splitter3
173            //
174            this.splitter3.Dock = System.Windows.Forms.DockStyle.Top;
175            this.splitter3.Location = new System.Drawing.Point(0, 54);
176            this.splitter3.Name = "splitter3";
177            this.splitter3.Size = new System.Drawing.Size(214, 5);
178            //
179            // listUsers
180            //
181            this.listUsers.Dock = System.Windows.Forms.DockStyle.Top;
182            this.listUsers.Font = new System.Drawing.Font("Tahoma", 4F, System.Drawing.FontStyle.Regular);
183            this.listUsers.Location = new System.Drawing.Point(0, 0);
184            this.listUsers.Name = "listUsers";
185            this.listUsers.Size = new System.Drawing.Size(214, 54);
186            this.listUsers.TabIndex = 2;
187            //
188            // mainMenu
189            //
190            this.mainMenu.MenuItems.Add(this.menuItemNext);
191            this.mainMenu.MenuItems.Add(this.menuItemMenu);
192            //
193            // menuItemNext
194            //
195            this.menuItemNext.Enabled = false;
196            this.menuItemNext.Text = "次へ";
197            this.menuItemNext.Click += new System.EventHandler(this.menuItemNext_Click);
198            //
199            // menuItemMenu
200            //
201            this.menuItemMenu.MenuItems.Add(this.menuItemConnect);
202            this.menuItemMenu.MenuItems.Add(this.menuItemChannel);
203            this.menuItemMenu.Text = "メニュー";
204            //
205            // menuItemConnect
206            //
207            this.menuItemConnect.MenuItems.Add(this.menuItemConnectServers);
208            this.menuItemConnect.MenuItems.Add(this.menuItemConnectDisconnect);
209            this.menuItemConnect.MenuItems.Add(this.menuItem5);
210            this.menuItemConnect.MenuItems.Add(this.menuItemExit);
211            this.menuItemConnect.Text = "接続(O)";
212            this.menuItemConnect.Popup += new System.EventHandler(this.menuItemConnect_Popup);
213            //
214            // menuItemConnectServers
215            //
216            this.menuItemConnectServers.MenuItems.Add(this.menuItemConnectForm);
217            this.menuItemConnectServers.MenuItems.Add(this.menuItemConnectSep);
218            this.menuItemConnectServers.Text = "サーバへ接続(&C)";
219            //
220            // menuItemConnectForm
221            //
222            this.menuItemConnectForm.Text = "接続先の設定(&N)...";
223            this.menuItemConnectForm.Click += new System.EventHandler(this.menuItemConnectForm_Click);
224            //
225            // menuItemConnectSep
226            //
227            this.menuItemConnectSep.Text = "-";
228            //
229            // menuItemConnectDisconnect
230            //
231            this.menuItemConnectDisconnect.Enabled = false;
232            this.menuItemConnectDisconnect.Text = "サーバから切断(&D)";
233            this.menuItemConnectDisconnect.Click += new System.EventHandler(this.menuItemConnectDisconnect_Click);
234            //
235            // menuItem5
236            //
237            this.menuItem5.Text = "-";
238            //
239            // menuItemExit
240            //
241            this.menuItemExit.Text = "Criw の終了(&X)";
242            this.menuItemExit.Click += new System.EventHandler(this.menuItemExit_Click);
243            //
244            // menuItemChannel
245            //
246            this.menuItemChannel.Enabled = false;
247            this.menuItemChannel.MenuItems.Add(this.menuItemChannelJoin);
248            this.menuItemChannel.MenuItems.Add(this.menuItemChannelPart);
249            this.menuItemChannel.MenuItems.Add(this.menuItem4);
250            this.menuItemChannel.MenuItems.Add(this.menuItemChannelTopic);
251            this.menuItemChannel.MenuItems.Add(this.menuItem1);
252            this.menuItemChannel.MenuItems.Add(this.menuItemChannelPrev);
253            this.menuItemChannel.Text = "チャンネル(&C)";
254            //
255            // menuItemChannelJoin
256            //
257            this.menuItemChannelJoin.Text = "新しいチャンネルに参加(&J)...";
258            this.menuItemChannelJoin.Click += new System.EventHandler(this.menuItemChannelJoin_Click);
259            //
260            // menuItemChannelPart
261            //
262            this.menuItemChannelPart.Text = "現在のチャンネルから抜ける(&P)";
263            this.menuItemChannelPart.Click += new System.EventHandler(this.menuItemChannelPart_Click);
264            //
265            // menuItem4
266            //
267            this.menuItem4.Text = "-";
268            //
269            // menuItemChannelTopic
270            //
271            this.menuItemChannelTopic.Text = "トピックを設定(&T)";
272            this.menuItemChannelTopic.Click += new System.EventHandler(this.menuItemChannelTopic_Click);
273            //
274            // menuItem1
275            //
276            this.menuItem1.Text = "-";
277            //
278            // menuItemChannelPrev
279            //
280            this.menuItemChannelPrev.Text = "前へ(R)";
281            this.menuItemChannelPrev.Click += new System.EventHandler(this.menuItemChannelPrev_Click);
282            //
283            // timerPing
284            //
285            this.timerPing.Interval = 15000;
286            this.timerPing.Tick += new System.EventHandler(this.timerPing_Tick);
287            //
288            // MainForm
289            //
290            this.AutoScaleDimensions = new System.Drawing.SizeF(192F, 192F);
291            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
292            this.ClientSize = new System.Drawing.Size(640, 376);
293            this.Controls.Add(this.panel2);
294            this.Controls.Add(this.splitter1);
295            this.Controls.Add(this.panel1);
296            this.Location = new System.Drawing.Point(0, 52);
297            this.Menu = this.mainMenu;
298            this.Name = "MainForm";
299            this.Text = "Criw";
300            this.Load += new System.EventHandler(this.Form1_Load);
301            this.panel1.ResumeLayout(false);
302            this.panel3.ResumeLayout(false);
303            this.panel2.ResumeLayout(false);
304            this.ResumeLayout(false);
305
306        }
307
308        #endregion
309
310        private System.Windows.Forms.Panel panel1;
311        private System.Windows.Forms.Splitter splitter1;
312        private System.Windows.Forms.Panel panel2;
313        private System.Windows.Forms.Splitter splitter2;
314        private System.Windows.Forms.Panel panel3;
315        private System.Windows.Forms.TextBox textInput;
316        private System.Windows.Forms.TextBox textLog;
317        private System.Windows.Forms.TextBox textAllLog;
318        private System.Windows.Forms.ListView listChannels;
319        private System.Windows.Forms.ColumnHeader columnHeader1;
320        private System.Windows.Forms.Splitter splitter3;
321        private System.Windows.Forms.ListBox listUsers;
322        private System.Windows.Forms.ColumnHeader columnHeader2;
323        private System.Windows.Forms.MainMenu mainMenu;
324        private System.Windows.Forms.MenuItem menuItemMenu;
325        private System.Windows.Forms.MenuItem menuItemChannel;
326        private System.Windows.Forms.MenuItem menuItemChannelJoin;
327        private System.Windows.Forms.MenuItem menuItemChannelPart;
328        private System.Windows.Forms.MenuItem menuItem4;
329        private System.Windows.Forms.MenuItem menuItemChannelTopic;
330        private System.Windows.Forms.MenuItem menuItemNext;
331        private System.Windows.Forms.MenuItem menuItemConnect;
332        private System.Windows.Forms.MenuItem menuItemConnectServers;
333        private System.Windows.Forms.MenuItem menuItemConnectForm;
334        private System.Windows.Forms.MenuItem menuItemConnectSep;
335        private System.Windows.Forms.MenuItem menuItemConnectDisconnect;
336        private System.Windows.Forms.MenuItem menuItem5;
337        private System.Windows.Forms.MenuItem menuItemExit;
338        private System.Windows.Forms.MenuItem menuItem1;
339        private System.Windows.Forms.MenuItem menuItemChannelPrev;
340        private System.Windows.Forms.Timer timerPing;
341
342    }
343}
Note: See TracBrowser for help on using the browser.