-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathInputForm.Designer.cs
119 lines (113 loc) · 5.61 KB
/
InputForm.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
namespace DroidLord
{
partial class InputForm
{
/// <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.materialLabel1 = new MaterialSkin.Controls.MaterialLabel();
this.textBox1 = new System.Windows.Forms.TextBox();
this.materialFlatButton1 = new MaterialSkin.Controls.MaterialFlatButton();
this.materialFlatButton2 = new MaterialSkin.Controls.MaterialFlatButton();
this.SuspendLayout();
//
// materialLabel1
//
this.materialLabel1.AutoSize = true;
this.materialLabel1.BackColor = System.Drawing.Color.White;
this.materialLabel1.Depth = 0;
this.materialLabel1.Font = new System.Drawing.Font("Roboto", 11F);
this.materialLabel1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
this.materialLabel1.Location = new System.Drawing.Point(10, 71);
this.materialLabel1.MouseState = MaterialSkin.MouseState.HOVER;
this.materialLabel1.Name = "materialLabel1";
this.materialLabel1.Size = new System.Drawing.Size(80, 19);
this.materialLabel1.TabIndex = 0;
this.materialLabel1.Text = "请输入{0}:";
//
// textBox1
//
this.textBox1.Font = new System.Drawing.Font("微软雅黑", 12F);
this.textBox1.Location = new System.Drawing.Point(12, 93);
this.textBox1.Multiline = true;
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(460, 129);
this.textBox1.TabIndex = 1;
//
// materialFlatButton1
//
this.materialFlatButton1.AutoSize = true;
this.materialFlatButton1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.materialFlatButton1.Depth = 0;
this.materialFlatButton1.Icon = null;
this.materialFlatButton1.Location = new System.Drawing.Point(291, 230);
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 = true;
this.materialFlatButton1.Click += new System.EventHandler(this.materialFlatButton1_Click);
//
// materialFlatButton2
//
this.materialFlatButton2.AutoSize = true;
this.materialFlatButton2.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.materialFlatButton2.Depth = 0;
this.materialFlatButton2.Icon = null;
this.materialFlatButton2.Location = new System.Drawing.Point(390, 230);
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 = true;
this.materialFlatButton2.Click += new System.EventHandler(this.materialFlatButton2_Click);
//
// InputForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(484, 275);
this.Controls.Add(this.materialFlatButton2);
this.Controls.Add(this.materialFlatButton1);
this.Controls.Add(this.textBox1);
this.Controls.Add(this.materialLabel1);
this.Name = "InputForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "输入{0}";
this.Load += new System.EventHandler(this.InputForm_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private MaterialSkin.Controls.MaterialLabel materialLabel1;
private System.Windows.Forms.TextBox textBox1;
private MaterialSkin.Controls.MaterialFlatButton materialFlatButton1;
private MaterialSkin.Controls.MaterialFlatButton materialFlatButton2;
}
}