FormDialog.Designer.cs
5.1 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
105
106
namespace FaceControl
{
partial class FormDialog
{
/// <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()
{
FaceControl.Theme.DarkTheme darkTheme1 = new FaceControl.Theme.DarkTheme();
this.formControlBox1 = new FaceControl.FormControlBox();
this.faceLabel1 = new FaceControl.FaceLabel();
this.BtnMessage = new FaceControl.FaceButtonGroup();
this.SuspendLayout();
//
// formControlBox1
//
this.formControlBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.formControlBox1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
this.formControlBox1.FaceColor = darkTheme1;
this.formControlBox1.Location = new System.Drawing.Point(406, 2);
this.formControlBox1.Name = "formControlBox1";
this.formControlBox1.ShowButtonSize = 12F;
this.formControlBox1.ShowMaxButton = false;
this.formControlBox1.ShowMinButton = false;
this.formControlBox1.Size = new System.Drawing.Size(57, 41);
this.formControlBox1.TabIndex = 1;
//
// faceLabel1
//
this.faceLabel1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.faceLabel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
this.faceLabel1.BorderWidth = 0;
this.faceLabel1.CursorInside = false;
this.faceLabel1.Font = new System.Drawing.Font("宋体", 12F);
this.faceLabel1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(230)))), ((int)(((byte)(230)))));
this.faceLabel1.ImageSize = new System.Drawing.Size(0, 0);
this.faceLabel1.Location = new System.Drawing.Point(12, 50);
this.faceLabel1.Name = "faceLabel1";
this.faceLabel1.Size = new System.Drawing.Size(441, 168);
this.faceLabel1.TabIndex = 12;
this.faceLabel1.Text = "faceLabel1";
//
// BtnMessage
//
this.BtnMessage.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.BtnMessage.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
this.BtnMessage.CursorInside = false;
this.BtnMessage.Font = new System.Drawing.Font("宋体", 12F);
this.BtnMessage.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(230)))), ((int)(((byte)(230)))));
this.BtnMessage.Location = new System.Drawing.Point(253, 224);
this.BtnMessage.Name = "BtnMessage";
this.BtnMessage.SelectedIndex = -1;
this.BtnMessage.Size = new System.Drawing.Size(200, 45);
this.BtnMessage.TabIndex = 13;
this.BtnMessage.Text = "faceButtonGroup1";
this.BtnMessage.Click += new System.EventHandler(this.BtnMessage_Click);
//
// FormDialog
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(465, 281);
this.Controls.Add(this.BtnMessage);
this.Controls.Add(this.faceLabel1);
this.Controls.Add(this.formControlBox1);
this.Location = new System.Drawing.Point(0, 0);
this.Name = "FormDialog";
this.Text = "FormDialog";
this.Controls.SetChildIndex(this.formControlBox1, 0);
this.Controls.SetChildIndex(this.faceLabel1, 0);
this.Controls.SetChildIndex(this.BtnMessage, 0);
this.ResumeLayout(false);
}
#endregion
private FormControlBox formControlBox1;
private FaceLabel faceLabel1;
private FaceButtonGroup BtnMessage;
}
}