FrmMultiple.Designer.cs
5.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
namespace CodeSplice
{
partial class FrmMultiple
{
/// <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.flatRadio1 = new Asa.Theme.FlatRadio();
this.flatRadio2 = new Asa.Theme.FlatRadio();
this.flatButton1 = new Asa.Theme.FlatButton();
this.flatButton2 = new Asa.Theme.FlatButton();
this.SuspendLayout();
//
// flatRadio1
//
this.flatRadio1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
this.flatRadio1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.flatRadio1.Group = "1";
this.flatRadio1.Inside = false;
this.flatRadio1.Location = new System.Drawing.Point(55, 107);
this.flatRadio1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.flatRadio1.Name = "flatRadio1";
this.flatRadio1.Size = new System.Drawing.Size(190, 40);
this.flatRadio1.TabIndex = 0;
this.flatRadio1.Text = "启用一个相机";
//
// flatRadio2
//
this.flatRadio2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
this.flatRadio2.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.flatRadio2.Group = "1";
this.flatRadio2.Inside = false;
this.flatRadio2.Location = new System.Drawing.Point(55, 153);
this.flatRadio2.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.flatRadio2.Name = "flatRadio2";
this.flatRadio2.Size = new System.Drawing.Size(190, 40);
this.flatRadio2.TabIndex = 1;
this.flatRadio2.Text = "启用所有相机";
//
// flatButton1
//
this.flatButton1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
this.flatButton1.Font = new System.Drawing.Font("宋体", 9F);
this.flatButton1.ImageSize = new System.Drawing.Size(0, 0);
this.flatButton1.Inside = false;
this.flatButton1.Location = new System.Drawing.Point(300, 307);
this.flatButton1.Name = "flatButton1";
this.flatButton1.Size = new System.Drawing.Size(80, 30);
this.flatButton1.StateColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
this.flatButton1.TabIndex = 4;
this.flatButton1.Text = "保存";
this.flatButton1.Click += new System.EventHandler(this.FlatButton1_Click);
//
// flatButton2
//
this.flatButton2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
this.flatButton2.Font = new System.Drawing.Font("宋体", 9F);
this.flatButton2.ImageSize = new System.Drawing.Size(0, 0);
this.flatButton2.Inside = false;
this.flatButton2.Location = new System.Drawing.Point(386, 307);
this.flatButton2.Name = "flatButton2";
this.flatButton2.Size = new System.Drawing.Size(80, 30);
this.flatButton2.StateColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
this.flatButton2.TabIndex = 5;
this.flatButton2.Text = "退出";
this.flatButton2.Click += new System.EventHandler(this.FlatButton2_Click);
//
// FrmMultiple
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(497, 364);
this.Controls.Add(this.flatButton2);
this.Controls.Add(this.flatButton1);
this.Controls.Add(this.flatRadio2);
this.Controls.Add(this.flatRadio1);
this.Location = new System.Drawing.Point(0, 0);
this.Name = "FrmMultiple";
this.Padding = new System.Windows.Forms.Padding(6, 82, 6, 6);
this.Text = "FrmMultiple";
this.TextCenter = true;
this.TitleFont = new System.Drawing.Font("宋体", 20F);
this.TitleHeight = 76;
this.Load += new System.EventHandler(this.FrmMultiple_Load);
this.ResumeLayout(false);
}
#endregion
private Asa.Theme.FlatRadio flatRadio1;
private Asa.Theme.FlatRadio flatRadio2;
private Asa.Theme.FlatButton flatButton1;
private Asa.Theme.FlatButton flatButton2;
}
}