-
Notifications
You must be signed in to change notification settings - Fork 0
/
Win.Designer.cs
78 lines (72 loc) · 3.23 KB
/
Win.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
namespace Tutgetch
{
partial class Win
{
private System.ComponentModel.IContainer components = null;
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(Win));
this.Exit = new System.Windows.Forms.Button();
this.LabelWin = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// Exit
//
this.Exit.BackColor = System.Drawing.Color.Red;
this.Exit.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.Exit.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
this.Exit.ForeColor = System.Drawing.Color.White;
this.Exit.Location = new System.Drawing.Point(127, 137);
this.Exit.Name = "Exit";
this.Exit.Size = new System.Drawing.Size(75, 23);
this.Exit.TabIndex = 0;
this.Exit.Text = "Exit";
this.Exit.UseVisualStyleBackColor = false;
this.Exit.Click += new System.EventHandler(this.Exit_Click);
//
// LabelWin
//
this.LabelWin.AutoSize = true;
this.LabelWin.Font = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
this.LabelWin.Location = new System.Drawing.Point(113, 57);
this.LabelWin.Name = "LabelWin";
this.LabelWin.Size = new System.Drawing.Size(98, 30);
this.LabelWin.TabIndex = 1;
this.LabelWin.Text = "You won!";
//
// Win
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(255)))), ((int)(((byte)(229)))));
this.ClientSize = new System.Drawing.Size(324, 192);
this.Controls.Add(this.LabelWin);
this.Controls.Add(this.Exit);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "Win";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Tutgetch";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button Exit;
private System.Windows.Forms.Label LabelWin;
}
}