-
Notifications
You must be signed in to change notification settings - Fork 35
/
SelectForm.Designer.cs
122 lines (116 loc) · 5.96 KB
/
SelectForm.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
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
120
121
122
namespace DroidLord
{
partial class SelectForm
{
/// <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.lbSelection = new MaterialSkin.Controls.MaterialLabel();
this.combSelection = new System.Windows.Forms.ComboBox();
this.materialFlatButton1 = new MaterialSkin.Controls.MaterialFlatButton();
this.materialFlatButton2 = new MaterialSkin.Controls.MaterialFlatButton();
this.SuspendLayout();
//
// lbSelection
//
this.lbSelection.AutoSize = true;
this.lbSelection.BackColor = System.Drawing.Color.White;
this.lbSelection.Depth = 0;
this.lbSelection.Font = new System.Drawing.Font("Roboto", 11F);
this.lbSelection.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
this.lbSelection.Location = new System.Drawing.Point(23, 98);
this.lbSelection.MouseState = MaterialSkin.MouseState.HOVER;
this.lbSelection.Name = "lbSelection";
this.lbSelection.Size = new System.Drawing.Size(60, 19);
this.lbSelection.TabIndex = 0;
this.lbSelection.Text = "选择{0}";
//
// combSelection
//
this.combSelection.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.combSelection.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.combSelection.FormattingEnabled = true;
this.combSelection.Location = new System.Drawing.Point(37, 129);
this.combSelection.Name = "combSelection";
this.combSelection.Size = new System.Drawing.Size(378, 33);
this.combSelection.TabIndex = 1;
//
// materialFlatButton1
//
this.materialFlatButton1.AutoSize = true;
this.materialFlatButton1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.materialFlatButton1.BackColor = System.Drawing.Color.White;
this.materialFlatButton1.Depth = 0;
this.materialFlatButton1.Icon = null;
this.materialFlatButton1.Location = new System.Drawing.Point(245, 183);
this.materialFlatButton1.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
this.materialFlatButton1.MouseState = MaterialSkin.MouseState.HOVER;
this.materialFlatButton1.Name = "materialFlatButton1";
this.materialFlatButton1.Primary = false;
this.materialFlatButton1.Size = new System.Drawing.Size(81, 36);
this.materialFlatButton1.TabIndex = 2;
this.materialFlatButton1.Text = "确定选择";
this.materialFlatButton1.UseVisualStyleBackColor = false;
this.materialFlatButton1.Click += new System.EventHandler(this.materialFlatButton1_Click);
//
// materialFlatButton2
//
this.materialFlatButton2.AutoSize = true;
this.materialFlatButton2.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.materialFlatButton2.BackColor = System.Drawing.Color.White;
this.materialFlatButton2.Depth = 0;
this.materialFlatButton2.Icon = null;
this.materialFlatButton2.Location = new System.Drawing.Point(334, 183);
this.materialFlatButton2.Margin = new System.Windows.Forms.Padding(4, 6, 4, 6);
this.materialFlatButton2.MouseState = MaterialSkin.MouseState.HOVER;
this.materialFlatButton2.Name = "materialFlatButton2";
this.materialFlatButton2.Primary = false;
this.materialFlatButton2.Size = new System.Drawing.Size(81, 36);
this.materialFlatButton2.TabIndex = 3;
this.materialFlatButton2.Text = "取消选择";
this.materialFlatButton2.UseVisualStyleBackColor = false;
this.materialFlatButton2.Click += new System.EventHandler(this.materialFlatButton2_Click);
//
// SelectForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(440, 234);
this.Controls.Add(this.materialFlatButton2);
this.Controls.Add(this.materialFlatButton1);
this.Controls.Add(this.combSelection);
this.Controls.Add(this.lbSelection);
this.Name = "SelectForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "选择{0}";
this.Load += new System.EventHandler(this.SelectForm_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private MaterialSkin.Controls.MaterialLabel lbSelection;
private System.Windows.Forms.ComboBox combSelection;
private MaterialSkin.Controls.MaterialFlatButton materialFlatButton1;
private MaterialSkin.Controls.MaterialFlatButton materialFlatButton2;
}
}