-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForm1.Designer.cs
96 lines (89 loc) · 3.71 KB
/
Form1.Designer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
namespace PhoneBook
{
partial class Form1
{
/// <summary>
/// 必要なデザイナー変数です。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 使用中のリソースをすべてクリーンアップします。
/// </summary>
/// <param name="disposing">マネージド リソースを破棄する場合は true を指定し、その他の場合は false を指定します。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows フォーム デザイナーで生成されたコード
/// <summary>
/// デザイナー サポートに必要なメソッドです。このメソッドの内容を
/// コード エディターで変更しないでください。
/// </summary>
private void InitializeComponent()
{
this.nameList = new System.Windows.Forms.ListBox();
this.phoneNumber = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// nameList
//
this.nameList.FormattingEnabled = true;
this.nameList.ItemHeight = 15;
this.nameList.Location = new System.Drawing.Point(53, 93);
this.nameList.Name = "nameList";
this.nameList.Size = new System.Drawing.Size(382, 304);
this.nameList.TabIndex = 0;
this.nameList.SelectedIndexChanged += new System.EventHandler(this.NameSelected);
//
// phoneNumber
//
this.phoneNumber.Location = new System.Drawing.Point(502, 93);
this.phoneNumber.Name = "phoneNumber";
this.phoneNumber.Size = new System.Drawing.Size(234, 22);
this.phoneNumber.TabIndex = 1;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(50, 37);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(37, 15);
this.label1.TabIndex = 2;
this.label1.Text = "名前";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(499, 37);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(67, 15);
this.label2.TabIndex = 3;
this.label2.Text = "電話番号";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.phoneNumber);
this.Controls.Add(this.nameList);
this.Name = "Form1";
this.Text = "Form1";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ListBox nameList;
private System.Windows.Forms.TextBox phoneNumber;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
}
}