-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathFromEditControl.Designer.cs
119 lines (112 loc) · 5.54 KB
/
FromEditControl.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 DigitalPlatform.CommonControl
{
partial class FromEditControl
{
/// <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)
{
// 2015/7/21
if (disposing)
{
this.ClearElements();
}
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Component 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.tableLayoutPanel_main = new System.Windows.Forms.TableLayoutPanel();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label_topleft = new System.Windows.Forms.Label();
this.tableLayoutPanel_main.SuspendLayout();
this.SuspendLayout();
//
// tableLayoutPanel_main
//
this.tableLayoutPanel_main.AutoScroll = true;
this.tableLayoutPanel_main.BackColor = System.Drawing.SystemColors.Window;
this.tableLayoutPanel_main.ColumnCount = 3;
this.tableLayoutPanel_main.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel_main.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel_main.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel_main.Controls.Add(this.label1, 1, 0);
this.tableLayoutPanel_main.Controls.Add(this.label2, 2, 0);
this.tableLayoutPanel_main.Controls.Add(this.label_topleft, 0, 0);
this.tableLayoutPanel_main.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel_main.Location = new System.Drawing.Point(0, 0);
this.tableLayoutPanel_main.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.tableLayoutPanel_main.Name = "tableLayoutPanel_main";
this.tableLayoutPanel_main.RowCount = 2;
this.tableLayoutPanel_main.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel_main.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel_main.Size = new System.Drawing.Size(462, 210);
this.tableLayoutPanel_main.TabIndex = 1;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label1.Location = new System.Drawing.Point(31, 8);
this.label1.Margin = new System.Windows.Forms.Padding(4, 8, 4, 4);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(54, 21);
this.label1.TabIndex = 1;
this.label1.Text = "风格";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label2.Location = new System.Drawing.Point(93, 8);
this.label2.Margin = new System.Windows.Forms.Padding(4, 8, 4, 4);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(98, 21);
this.label2.TabIndex = 2;
this.label2.Text = "显示文字";
//
// label_topleft
//
this.label_topleft.Dock = System.Windows.Forms.DockStyle.Fill;
this.label_topleft.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label_topleft.Location = new System.Drawing.Point(4, 8);
this.label_topleft.Margin = new System.Windows.Forms.Padding(4, 8, 4, 4);
this.label_topleft.Name = "label_topleft";
this.label_topleft.Size = new System.Drawing.Size(19, 29);
this.label_topleft.TabIndex = 6;
this.label_topleft.MouseUp += new System.Windows.Forms.MouseEventHandler(this.label_topleft_MouseUp);
//
// FromEditControl
//
this.AutoScaleDimensions = new System.Drawing.SizeF(11F, 21F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.tableLayoutPanel_main);
this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.Name = "FromEditControl";
this.Size = new System.Drawing.Size(462, 210);
this.tableLayoutPanel_main.ResumeLayout(false);
this.tableLayoutPanel_main.PerformLayout();
this.ResumeLayout(false);
}
#endregion
internal System.Windows.Forms.TableLayoutPanel tableLayoutPanel_main;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label_topleft;
}
}