-
Notifications
You must be signed in to change notification settings - Fork 0
/
Practice.Designer.cs
92 lines (87 loc) · 4.36 KB
/
Practice.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
namespace HiraKata_Kaizen {
partial class Practice {
/// <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() {
this.btnQuiz = new HiraKata_Kaizen.CustomButton();
this.btnCards = new HiraKata_Kaizen.CustomButton();
this.SuspendLayout();
//
// btnQuiz
//
this.btnQuiz.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(30)))), ((int)(((byte)(34)))));
this.btnQuiz.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(30)))), ((int)(((byte)(34)))));
this.btnQuiz.BorderColor = System.Drawing.Color.Transparent;
this.btnQuiz.BorderRadius = 10;
this.btnQuiz.BorderSize = 0;
this.btnQuiz.FlatAppearance.BorderSize = 0;
this.btnQuiz.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnQuiz.Font = new System.Drawing.Font("Segoe UI", 14F);
this.btnQuiz.ForeColor = System.Drawing.Color.White;
this.btnQuiz.Location = new System.Drawing.Point(299, 209);
this.btnQuiz.Name = "btnQuiz";
this.btnQuiz.Size = new System.Drawing.Size(175, 50);
this.btnQuiz.TabIndex = 2;
this.btnQuiz.Text = "Викторина";
this.btnQuiz.TextColor = System.Drawing.Color.White;
this.btnQuiz.UseVisualStyleBackColor = false;
this.btnQuiz.Click += new System.EventHandler(this.btnQuiz_Click);
//
// btnCards
//
this.btnCards.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(30)))), ((int)(((byte)(34)))));
this.btnCards.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(30)))), ((int)(((byte)(34)))));
this.btnCards.BorderColor = System.Drawing.Color.Transparent;
this.btnCards.BorderRadius = 10;
this.btnCards.BorderSize = 0;
this.btnCards.FlatAppearance.BorderSize = 0;
this.btnCards.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnCards.Font = new System.Drawing.Font("Segoe UI", 14F);
this.btnCards.ForeColor = System.Drawing.Color.White;
this.btnCards.Location = new System.Drawing.Point(540, 209);
this.btnCards.Name = "btnCards";
this.btnCards.Size = new System.Drawing.Size(175, 50);
this.btnCards.TabIndex = 2;
this.btnCards.Text = "Карты";
this.btnCards.TextColor = System.Drawing.Color.White;
this.btnCards.UseVisualStyleBackColor = false;
this.btnCards.Click += new System.EventHandler(this.btnCards_Click);
//
// Practice
//
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 21F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.Black;
this.ClientSize = new System.Drawing.Size(1015, 469);
this.Controls.Add(this.btnCards);
this.Controls.Add(this.btnQuiz);
this.Font = new System.Drawing.Font("Segoe UI", 12F);
this.ForeColor = System.Drawing.Color.White;
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.Name = "Practice";
this.Text = "Practice";
this.ResumeLayout(false);
}
#endregion
private CustomButton btnQuiz;
private CustomButton btnCards;
}
}