親フォルダ
01.namespace DataGridView
02.{
03.    partial class Form1
04.    {
05.        /// <summary>
06.        /// 必要なデザイナー変数です。
07.        /// </summary>
08.        private System.ComponentModel.IContainer components = null;
09. 
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.button1 = new System.Windows.Forms.Button();
32.            this.button2 = new System.Windows.Forms.Button();
33.            this.textBox1 = new System.Windows.Forms.TextBox();
34.            this.SuspendLayout();
35.            //
36.            // button1
37.            //
38.            this.button1.Location = new System.Drawing.Point(411, 39);
39.            this.button1.Name = "button1";
40.            this.button1.Size = new System.Drawing.Size(95, 33);
41.            this.button1.TabIndex = 0;
42.            this.button1.Text = "button1";
43.            this.button1.UseVisualStyleBackColor = true;
44.            this.button1.Click += new System.EventHandler(this.button1_Click);
45.            //
46.            // button2
47.            //
48.            this.button2.Location = new System.Drawing.Point(535, 38);
49.            this.button2.Name = "button2";
50.            this.button2.Size = new System.Drawing.Size(94, 34);
51.            this.button2.TabIndex = 1;
52.            this.button2.Text = "button2";
53.            this.button2.UseVisualStyleBackColor = true;
54.            this.button2.Click += new System.EventHandler(this.button2_Click);
55.            //
56.            // textBox1
57.            //
58.            this.textBox1.Location = new System.Drawing.Point(43, 46);
59.            this.textBox1.Name = "textBox1";
60.            this.textBox1.Size = new System.Drawing.Size(332, 19);
61.            this.textBox1.TabIndex = 2;
62.            //
63.            // Form1
64.            //
65.            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
66.            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
67.            this.ClientSize = new System.Drawing.Size(800, 450);
68.            this.Controls.Add(this.textBox1);
69.            this.Controls.Add(this.button2);
70.            this.Controls.Add(this.button1);
71.            this.Name = "Form1";
72.            this.Text = "Form1";
73.            this.ResumeLayout(false);
74.            this.PerformLayout();
75. 
76.        }
77. 
78.        #endregion
79. 
80.        private System.Windows.Forms.Button button1;
81.        private System.Windows.Forms.Button button2;
82.        private System.Windows.Forms.TextBox textBox1;
83.    }
84.}