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

Revision 1736, 5.0 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 AutoJoinSettingForm
4    {
5        /// <summary>
6        /// 必要なデザイナ変数です。
7        /// </summary>
8        private System.ComponentModel.IContainer components = null;
9        private System.Windows.Forms.MainMenu mainMenu1;
10
11        /// <summary>
12        /// 使用中のリソースをすべてクリーンアップします。
13        /// </summary>
14        /// <param name="disposing">マネージ リソースが破棄される場合 true、破棄されない場合は false です。</param>
15        protected override void Dispose(bool disposing)
16        {
17            if (disposing && (components != null))
18            {
19                components.Dispose();
20            }
21            base.Dispose(disposing);
22        }
23
24        #region Windows フォーム デザイナで生成されたコード
25
26        /// <summary>
27        /// デザイナ サポートに必要なメソッドです。このメソッドの内容を
28        /// コード エディタで変更しないでください。
29        /// </summary>
30        private void InitializeComponent()
31        {
32            this.mainMenu1 = new System.Windows.Forms.MainMenu();
33            this.menuItemSave = new System.Windows.Forms.MenuItem();
34            this.menuItemCancel = new System.Windows.Forms.MenuItem();
35            this.listChannels = new System.Windows.Forms.ListBox();
36            this.textChannelName = new System.Windows.Forms.TextBox();
37            this.buttonAdd = new System.Windows.Forms.Button();
38            this.buttonRemove = new System.Windows.Forms.Button();
39            this.SuspendLayout();
40            //
41            // mainMenu1
42            //
43            this.mainMenu1.MenuItems.Add(this.menuItemSave);
44            this.mainMenu1.MenuItems.Add(this.menuItemCancel);
45            //
46            // menuItemSave
47            //
48            this.menuItemSave.Text = "OK";
49            this.menuItemSave.Click += new System.EventHandler(this.menuItemSave_Click);
50            //
51            // menuItemCancel
52            //
53            this.menuItemCancel.Text = "キャンセル";
54            this.menuItemCancel.Click += new System.EventHandler(this.menuItemCancel_Click);
55            //
56            // listChannels
57            //
58            this.listChannels.Location = new System.Drawing.Point(6, 6);
59            this.listChannels.Name = "listChannels";
60            this.listChannels.Size = new System.Drawing.Size(625, 292);
61            this.listChannels.TabIndex = 0;
62            //
63            // textChannelName
64            //
65            this.textChannelName.Location = new System.Drawing.Point(6, 319);
66            this.textChannelName.Name = "textChannelName";
67            this.textChannelName.Size = new System.Drawing.Size(392, 41);
68            this.textChannelName.TabIndex = 1;
69            this.textChannelName.Text = "#";
70            //
71            // buttonAdd
72            //
73            this.buttonAdd.Location = new System.Drawing.Point(410, 321);
74            this.buttonAdd.Name = "buttonAdd";
75            this.buttonAdd.Size = new System.Drawing.Size(106, 40);
76            this.buttonAdd.TabIndex = 2;
77            this.buttonAdd.Text = "追加";
78            this.buttonAdd.Click += new System.EventHandler(this.buttonAdd_Click);
79            //
80            // buttonRemove
81            //
82            this.buttonRemove.Location = new System.Drawing.Point(525, 321);
83            this.buttonRemove.Name = "buttonRemove";
84            this.buttonRemove.Size = new System.Drawing.Size(106, 40);
85            this.buttonRemove.TabIndex = 3;
86            this.buttonRemove.Text = "削除";
87            this.buttonRemove.Click += new System.EventHandler(this.buttonRemove_Click);
88            //
89            // AutoJoinSettingForm
90            //
91            this.AutoScaleDimensions = new System.Drawing.SizeF(192F, 192F);
92            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
93            this.AutoScroll = true;
94            this.ClientSize = new System.Drawing.Size(640, 376);
95            this.Controls.Add(this.buttonRemove);
96            this.Controls.Add(this.buttonAdd);
97            this.Controls.Add(this.textChannelName);
98            this.Controls.Add(this.listChannels);
99            this.Location = new System.Drawing.Point(0, 52);
100            this.Menu = this.mainMenu1;
101            this.Name = "AutoJoinSettingForm";
102            this.Text = "接続時に参加するチャンネル - Criw";
103            this.ResumeLayout(false);
104
105        }
106
107        #endregion
108
109        private System.Windows.Forms.ListBox listChannels;
110        private System.Windows.Forms.TextBox textChannelName;
111        private System.Windows.Forms.Button buttonAdd;
112        private System.Windows.Forms.Button buttonRemove;
113        private System.Windows.Forms.MenuItem menuItemSave;
114        private System.Windows.Forms.MenuItem menuItemCancel;
115    }
116}
Note: See TracBrowser for help on using the browser.