-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHighScores.Designer.cs
122 lines (116 loc) · 5.07 KB
/
HighScores.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
namespace MinTetris
{
partial class HighScores
{
/// <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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(HighScores));
this.HighScoresListView = new System.Windows.Forms.ListView();
this.Player = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.Score = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.Lines = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.Level = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.resetBtn = new System.Windows.Forms.Button();
this.okBtn = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// HighScoresListView
//
this.HighScoresListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.Player,
this.Score,
this.Lines,
this.Level});
this.HighScoresListView.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.HighScoresListView.HideSelection = false;
this.HighScoresListView.Location = new System.Drawing.Point(12, 12);
this.HighScoresListView.Name = "HighScoresListView";
this.HighScoresListView.Size = new System.Drawing.Size(371, 272);
this.HighScoresListView.TabIndex = 0;
this.HighScoresListView.UseCompatibleStateImageBehavior = false;
this.HighScoresListView.View = System.Windows.Forms.View.Details;
//
// Player
//
this.Player.Text = "Player";
this.Player.Width = 175;
//
// Score
//
this.Score.Text = "Score";
this.Score.Width = 67;
//
// Lines
//
this.Lines.Text = "Lines";
//
// Level
//
this.Level.Text = "Level";
//
// resetBtn
//
this.resetBtn.Location = new System.Drawing.Point(113, 301);
this.resetBtn.Name = "resetBtn";
this.resetBtn.Size = new System.Drawing.Size(75, 23);
this.resetBtn.TabIndex = 1;
this.resetBtn.Text = "Reset";
this.resetBtn.UseVisualStyleBackColor = true;
this.resetBtn.Click += new System.EventHandler(this.resetBtn_Click);
//
// okBtn
//
this.okBtn.Location = new System.Drawing.Point(194, 301);
this.okBtn.Name = "okBtn";
this.okBtn.Size = new System.Drawing.Size(75, 23);
this.okBtn.TabIndex = 2;
this.okBtn.Text = "OK";
this.okBtn.UseVisualStyleBackColor = true;
this.okBtn.Click += new System.EventHandler(this.okBtn_Click);
//
// HighScores
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(392, 336);
this.Controls.Add(this.okBtn);
this.Controls.Add(this.resetBtn);
this.Controls.Add(this.HighScoresListView);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "HighScores";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "HighScores";
this.Load += new System.EventHandler(this.HighScores_Load);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.ListView HighScoresListView;
private System.Windows.Forms.ColumnHeader Player;
private System.Windows.Forms.ColumnHeader Score;
private System.Windows.Forms.ColumnHeader Lines;
private System.Windows.Forms.ColumnHeader Level;
private System.Windows.Forms.Button resetBtn;
private System.Windows.Forms.Button okBtn;
}
}