-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForm1.Designer.cs
131 lines (125 loc) · 5.31 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
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
130
namespace Sachy_Obrazky
{
partial class Form1
{
/// <summary>
/// Vyžaduje se proměnná návrháře.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Uvolněte všechny používané prostředky.
/// </summary>
/// <param name="disposing">hodnota true, když by se měl spravovaný prostředek odstranit; jinak false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Kód generovaný Návrhářem Windows Form
/// <summary>
/// Metoda vyžadovaná pro podporu Návrháře - neupravovat
/// obsah této metody v editoru kódu.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.panel1 = new System.Windows.Forms.Panel();
this.timer1 = new System.Windows.Forms.Timer(this.components);
this.timer2 = new System.Windows.Forms.Timer(this.components);
this.KonecHry = new System.Windows.Forms.TextBox();
this.panel2 = new System.Windows.Forms.Panel();
this.panel3 = new System.Windows.Forms.Panel();
this.SaveName = new System.Windows.Forms.TextBox();
this.panel3.SuspendLayout();
this.SuspendLayout();
//
// panel1
//
this.panel1.Location = new System.Drawing.Point(201, 47);
this.panel1.Margin = new System.Windows.Forms.Padding(4);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(805, 692);
this.panel1.TabIndex = 64;
this.panel1.Paint += new System.Windows.Forms.PaintEventHandler(this.panel1_Paint);
//
// timer1
//
this.timer1.Enabled = true;
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
//
// timer2
//
this.timer2.Enabled = true;
this.timer2.Interval = 300;
this.timer2.Tick += new System.EventHandler(this.timer2_Tick);
//
// KonecHry
//
this.KonecHry.Enabled = false;
this.KonecHry.Font = new System.Drawing.Font("Microsoft Sans Serif", 20F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.KonecHry.HideSelection = false;
this.KonecHry.Location = new System.Drawing.Point(0, 76);
this.KonecHry.Margin = new System.Windows.Forms.Padding(4);
this.KonecHry.Name = "KonecHry";
this.KonecHry.ReadOnly = true;
this.KonecHry.Size = new System.Drawing.Size(804, 45);
this.KonecHry.TabIndex = 0;
this.KonecHry.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
this.KonecHry.Visible = false;
this.KonecHry.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
//
// panel2
//
this.panel2.Location = new System.Drawing.Point(3, 47);
this.panel2.Margin = new System.Windows.Forms.Padding(4);
this.panel2.Name = "panel2";
this.panel2.Size = new System.Drawing.Size(191, 692);
this.panel2.TabIndex = 0;
//
// panel3
//
this.panel3.Controls.Add(this.KonecHry);
this.panel3.Location = new System.Drawing.Point(201, 746);
this.panel3.Margin = new System.Windows.Forms.Padding(4);
this.panel3.Name = "panel3";
this.panel3.Size = new System.Drawing.Size(805, 123);
this.panel3.TabIndex = 65;
//
// SaveName
//
this.SaveName.Location = new System.Drawing.Point(12, 18);
this.SaveName.Name = "SaveName";
this.SaveName.Size = new System.Drawing.Size(100, 22);
this.SaveName.TabIndex = 66;
this.SaveName.Text = "prepsana";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1112, 998);
this.Controls.Add(this.SaveName);
this.Controls.Add(this.panel3);
this.Controls.Add(this.panel2);
this.Controls.Add(this.panel1);
this.Margin = new System.Windows.Forms.Padding(4);
this.Name = "Form1";
this.Text = "Form1";
this.panel3.ResumeLayout(false);
this.panel3.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.Timer timer1;
private System.Windows.Forms.Timer timer2;
private System.Windows.Forms.TextBox KonecHry;
private System.Windows.Forms.Panel panel2;
private System.Windows.Forms.Panel panel3;
private System.Windows.Forms.TextBox SaveName;
}
}