-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFormBattleResultDetail.Designer.cs
129 lines (123 loc) · 5.16 KB
/
FormBattleResultDetail.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
namespace KCB2
{
partial class FormBattleResultDetail
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.Windows.Forms.ListViewItem listViewItem1 = new System.Windows.Forms.ListViewItem(new string[] {
"",
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem2 = new System.Windows.Forms.ListViewItem(new string[] {
"1st",
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem3 = new System.Windows.Forms.ListViewItem(new string[] {
"2nd",
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem4 = new System.Windows.Forms.ListViewItem(new string[] {
"3rd",
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem5 = new System.Windows.Forms.ListViewItem(new string[] {
"4th",
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem6 = new System.Windows.Forms.ListViewItem(new string[] {
"5th",
"",
""}, -1);
System.Windows.Forms.ListViewItem listViewItem7 = new System.Windows.Forms.ListViewItem(new string[] {
"6th",
"",
""}, -1);
this.lvDetail = new System.Windows.Forms.ListView();
this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.SuspendLayout();
//
// lvDetail
//
this.lvDetail.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader1,
this.columnHeader2,
this.columnHeader3});
this.lvDetail.Dock = System.Windows.Forms.DockStyle.Fill;
this.lvDetail.FullRowSelect = true;
this.lvDetail.GridLines = true;
this.lvDetail.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
this.lvDetail.Items.AddRange(new System.Windows.Forms.ListViewItem[] {
listViewItem1,
listViewItem2,
listViewItem3,
listViewItem4,
listViewItem5,
listViewItem6,
listViewItem7});
this.lvDetail.Location = new System.Drawing.Point(0, 0);
this.lvDetail.Name = "lvDetail";
this.lvDetail.ShowItemToolTips = true;
this.lvDetail.Size = new System.Drawing.Size(202, 136);
this.lvDetail.TabIndex = 0;
this.lvDetail.UseCompatibleStateImageBehavior = false;
this.lvDetail.View = System.Windows.Forms.View.Details;
//
// columnHeader1
//
this.columnHeader1.Text = "No.";
this.columnHeader1.Width = 30;
//
// columnHeader2
//
this.columnHeader2.Text = "自艦隊";
this.columnHeader2.Width = 84;
//
// columnHeader3
//
this.columnHeader3.Text = "敵艦隊";
this.columnHeader3.Width = 71;
//
// FormBattleResultDetail
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(202, 136);
this.Controls.Add(this.lvDetail);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
this.MaximizeBox = false;
this.Name = "FormBattleResultDetail";
this.Text = "戦闘結果";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormBattleResultDetail_FormClosing);
this.Load += new System.EventHandler(this.FormBattleResultDetail_Load);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.ListView lvDetail;
private System.Windows.Forms.ColumnHeader columnHeader1;
private System.Windows.Forms.ColumnHeader columnHeader2;
private System.Windows.Forms.ColumnHeader columnHeader3;
}
}