FlatMessage.Designer.cs
4.7 KB
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
namespace Asa.Theme
{
partial class FlatMessage
{
/// <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.BtnOK = new Asa.Theme.FlatButton();
this.BtnCancel = new Asa.Theme.FlatButton();
this.Lbl = new Asa.Theme.FlatLabel();
this.SuspendLayout();
//
// BtnOK
//
this.BtnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.BtnOK.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
this.BtnOK.Font = new System.Drawing.Font("宋体", 11F);
this.BtnOK.ImageSize = new System.Drawing.Size(0, 0);
this.BtnOK.Inside = false;
this.BtnOK.Location = new System.Drawing.Point(187, 186);
this.BtnOK.Name = "BtnOK";
this.BtnOK.Size = new System.Drawing.Size(100, 40);
this.BtnOK.StateColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
this.BtnOK.TabIndex = 3;
this.BtnOK.Text = "OK";
this.BtnOK.Click += new System.EventHandler(this.BtnOK_Click);
//
// BtnCancel
//
this.BtnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.BtnCancel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
this.BtnCancel.Font = new System.Drawing.Font("宋体", 11F);
this.BtnCancel.ImageSize = new System.Drawing.Size(0, 0);
this.BtnCancel.Inside = false;
this.BtnCancel.Location = new System.Drawing.Point(293, 186);
this.BtnCancel.Name = "BtnCancel";
this.BtnCancel.Size = new System.Drawing.Size(100, 40);
this.BtnCancel.StateColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
this.BtnCancel.TabIndex = 4;
this.BtnCancel.Text = "Cancel";
this.BtnCancel.Click += new System.EventHandler(this.BtnCancel_Click);
//
// Lbl
//
this.Lbl.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
this.Lbl.Font = new System.Drawing.Font("宋体", 14F);
this.Lbl.Inside = false;
this.Lbl.Location = new System.Drawing.Point(15, 45);
this.Lbl.Name = "Lbl";
this.Lbl.Size = new System.Drawing.Size(381, 135);
this.Lbl.TabIndex = 5;
this.Lbl.Text = "flatLabel1";
//
// FlatMessage
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(408, 241);
this.Controls.Add(this.Lbl);
this.Controls.Add(this.BtnCancel);
this.Controls.Add(this.BtnOK);
this.Location = new System.Drawing.Point(0, 0);
this.Minimized = false;
this.Name = "FlatMessage";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.Text = "MessageBox";
this.TitleFont = new System.Drawing.Font("宋体", 16F);
this.TopMost = true;
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FlatMessage_FormClosing);
this.Load += new System.EventHandler(this.FlatMessage_Load);
this.ResumeLayout(false);
}
#endregion
private FlatButton BtnOK;
private FlatButton BtnCancel;
private FlatLabel Lbl;
}
}