root/lang/csharp/soyText/soyText/FormMsg.Designer.cs @ 36855

Revision 36855, 3.3 kB (checked in by hoge1e3, 3 years ago)
Line 
1namespace SoyText
2{
3    partial class FormMsg
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.components = new System.ComponentModel.Container();
32            this.label1 = new System.Windows.Forms.Label();
33            this.timer1 = new System.Windows.Forms.Timer(this.components);
34            this.label2 = new System.Windows.Forms.Label();
35            this.SuspendLayout();
36            //
37            // label1
38            //
39            this.label1.AutoSize = true;
40            this.label1.Location = new System.Drawing.Point(32, 5);
41            this.label1.Name = "label1";
42            this.label1.Size = new System.Drawing.Size(35, 12);
43            this.label1.TabIndex = 0;
44            this.label1.Text = "label1";
45            //
46            // timer1
47            //
48            this.timer1.Enabled = true;
49            this.timer1.Interval = 17;
50            this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
51            //
52            // label2
53            //
54            this.label2.AutoSize = true;
55            this.label2.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
56            this.label2.Location = new System.Drawing.Point(12, 2);
57            this.label2.Name = "label2";
58            this.label2.Size = new System.Drawing.Size(14, 15);
59            this.label2.TabIndex = 1;
60            this.label2.Text = "\\";
61            this.label2.Click += new System.EventHandler(this.label2_Click);
62            //
63            // FormMsg
64            //
65            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
66            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
67            this.BackColor = System.Drawing.Color.WhiteSmoke;
68            this.ClientSize = new System.Drawing.Size(344, 20);
69            this.Controls.Add(this.label2);
70            this.Controls.Add(this.label1);
71            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
72            this.Name = "FormMsg";
73            this.Text = "Form1";
74            this.ResumeLayout(false);
75            this.PerformLayout();
76
77        }
78
79        #endregion
80
81        private System.Windows.Forms.Label label1;
82        private System.Windows.Forms.Timer timer1;
83        private System.Windows.Forms.Label label2;
84    }
85}
Note: See TracBrowser for help on using the browser.