-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainClass.Designer.cs
135 lines (128 loc) · 6.3 KB
/
MainClass.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
131
132
133
134
namespace CheckersSolver
{
partial class MainClass
{
/// <summary>
/// Обязательная переменная конструктора.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Освободить все используемые ресурсы.
/// </summary>
/// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Код, автоматически созданный конструктором форм Windows
/// <summary>
/// Требуемый метод для поддержки конструктора — не изменяйте
/// содержимое этого метода с помощью редактора кода.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainClass));
this.pictureBox = new System.Windows.Forms.PictureBox();
this.solveButton = new System.Windows.Forms.Button();
this.SizeSelectionComboBox = new System.Windows.Forms.ComboBox();
this.firstTurnCheckBox = new System.Windows.Forms.CheckBox();
this.visualizeCheckBox = new System.Windows.Forms.CheckBox();
this.resultLabel = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
this.SuspendLayout();
//
// pictureBox
//
this.pictureBox.Location = new System.Drawing.Point(12, 12);
this.pictureBox.Name = "pictureBox";
this.pictureBox.Size = new System.Drawing.Size(320, 320);
this.pictureBox.TabIndex = 0;
this.pictureBox.TabStop = false;
this.pictureBox.Click += new System.EventHandler(this.pictureBox_Click);
//
// solveButton
//
this.solveButton.Location = new System.Drawing.Point(257, 363);
this.solveButton.Name = "solveButton";
this.solveButton.Size = new System.Drawing.Size(75, 42);
this.solveButton.TabIndex = 1;
this.solveButton.Text = "SOLVE!";
this.solveButton.UseVisualStyleBackColor = true;
this.solveButton.Click += new System.EventHandler(this.solveButton_Click);
//
// SizeSelectionComboBox
//
this.SizeSelectionComboBox.FormattingEnabled = true;
this.SizeSelectionComboBox.Items.AddRange(new object[] {
"4 x 4",
"6 x 6",
"8 x 8"});
this.SizeSelectionComboBox.Location = new System.Drawing.Point(12, 363);
this.SizeSelectionComboBox.Name = "SizeSelectionComboBox";
this.SizeSelectionComboBox.Size = new System.Drawing.Size(121, 24);
this.SizeSelectionComboBox.TabIndex = 2;
this.SizeSelectionComboBox.SelectedIndexChanged += new System.EventHandler(this.SizeSelectionComboBox_SelectedIndexChanged);
//
// firstTurnCheckBox
//
this.firstTurnCheckBox.AutoSize = true;
this.firstTurnCheckBox.Checked = true;
this.firstTurnCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
this.firstTurnCheckBox.Location = new System.Drawing.Point(12, 396);
this.firstTurnCheckBox.Name = "firstTurnCheckBox";
this.firstTurnCheckBox.Size = new System.Drawing.Size(89, 21);
this.firstTurnCheckBox.TabIndex = 4;
this.firstTurnCheckBox.Text = "white first";
this.firstTurnCheckBox.UseVisualStyleBackColor = true;
//
// visualizeCheckBox
//
this.visualizeCheckBox.AutoSize = true;
this.visualizeCheckBox.Checked = true;
this.visualizeCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
this.visualizeCheckBox.Location = new System.Drawing.Point(12, 417);
this.visualizeCheckBox.Name = "visualizeCheckBox";
this.visualizeCheckBox.Size = new System.Drawing.Size(84, 21);
this.visualizeCheckBox.TabIndex = 4;
this.visualizeCheckBox.Text = "visualize";
this.visualizeCheckBox.UseVisualStyleBackColor = true;
//
// resultLabel
//
this.resultLabel.AutoSize = true;
this.resultLabel.Location = new System.Drawing.Point(155, 417);
this.resultLabel.Name = "resultLabel";
this.resultLabel.Size = new System.Drawing.Size(47, 17);
this.resultLabel.TabIndex = 5;
this.resultLabel.Text = "result:";
//
// MainClass
//
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
this.ClientSize = new System.Drawing.Size(356, 453);
this.Controls.Add(this.resultLabel);
this.Controls.Add(this.visualizeCheckBox);
this.Controls.Add(this.firstTurnCheckBox);
this.Controls.Add(this.SizeSelectionComboBox);
this.Controls.Add(this.solveButton);
this.Controls.Add(this.pictureBox);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "MainClass";
this.Text = "XtremeCheckerSolver";
((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.PictureBox pictureBox;
private System.Windows.Forms.Button solveButton;
private System.Windows.Forms.ComboBox SizeSelectionComboBox;
private System.Windows.Forms.CheckBox firstTurnCheckBox;
private System.Windows.Forms.CheckBox visualizeCheckBox;
private System.Windows.Forms.Label resultLabel;
}
}