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

Revision 1736, 4.7 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 JoinForm
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.textChannelName = new System.Windows.Forms.TextBox();
33            this.mainMenu1 = new System.Windows.Forms.MainMenu();
34            this.menuItemJoin = new System.Windows.Forms.MenuItem();
35            this.menuItemCancel = new System.Windows.Forms.MenuItem();
36            this.buttonJoin = new System.Windows.Forms.Button();
37            this.SuspendLayout();
38            //
39            // label1
40            //
41            this.label1.Location = new System.Drawing.Point(6, 18);
42            this.label1.Name = "label1";
43            this.label1.Size = new System.Drawing.Size(190, 36);
44            this.label1.Text = "チャンネル名(&C):";
45            //
46            // textChannelName
47            //
48            this.textChannelName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
49                        | System.Windows.Forms.AnchorStyles.Right)));
50            this.textChannelName.Location = new System.Drawing.Point(6, 60);
51            this.textChannelName.Name = "textChannelName";
52            this.textChannelName.Size = new System.Drawing.Size(631, 41);
53            this.textChannelName.TabIndex = 3;
54            this.textChannelName.Text = "#";
55            //
56            // mainMenu1
57            //
58            this.mainMenu1.MenuItems.Add(this.menuItemJoin);
59            this.mainMenu1.MenuItems.Add(this.menuItemCancel);
60            //
61            // menuItemJoin
62            //
63            this.menuItemJoin.Text = "参加";
64            this.menuItemJoin.Click += new System.EventHandler(this.menuItemJoin_Click);
65            //
66            // menuItemCancel
67            //
68            this.menuItemCancel.Text = "キャンセル";
69            this.menuItemCancel.Click += new System.EventHandler(this.menuItemCancel_Click);
70            //
71            // buttonJoin
72            //
73            this.buttonJoin.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
74                        | System.Windows.Forms.AnchorStyles.Right)));
75            this.buttonJoin.Location = new System.Drawing.Point(6, 114);
76            this.buttonJoin.Name = "buttonJoin";
77            this.buttonJoin.Size = new System.Drawing.Size(400, 40);
78            this.buttonJoin.TabIndex = 2;
79            this.buttonJoin.Text = "参加(&J)";
80            this.buttonJoin.Click += new System.EventHandler(this.buttonJoin_Click);
81            //
82            // JoinForm
83            //
84            this.AutoScaleDimensions = new System.Drawing.SizeF(192F, 192F);
85            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
86            this.ClientSize = new System.Drawing.Size(640, 376);
87            this.Controls.Add(this.buttonJoin);
88            this.Controls.Add(this.textChannelName);
89            this.Controls.Add(this.label1);
90            this.Location = new System.Drawing.Point(0, 52);
91            this.Menu = this.mainMenu1;
92            this.Name = "JoinForm";
93            this.Text = "チャンネルに参加 - Criw";
94            this.ResumeLayout(false);
95
96        }
97
98        #endregion
99
100        private System.Windows.Forms.Label label1;
101        private System.Windows.Forms.TextBox textChannelName;
102        private System.Windows.Forms.MainMenu mainMenu1;
103        private System.Windows.Forms.MenuItem menuItemJoin;
104        private System.Windows.Forms.MenuItem menuItemCancel;
105        private System.Windows.Forms.Button buttonJoin;
106    }
107}
Note: See TracBrowser for help on using the browser.