-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathTaskWindowControl.Designer.cs
More file actions
119 lines (113 loc) · 5.13 KB
/
TaskWindowControl.Designer.cs
File metadata and controls
119 lines (113 loc) · 5.13 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 PE多功能信息处理插件
{
partial class TaskWindowControl
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region 组件设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要修改
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.metroLabel1 = new MetroFramework.Controls.MetroLabel();
this.metroLink1 = new MetroFramework.Controls.MetroLink();
this.metroLink2 = new MetroFramework.Controls.MetroLink();
this.metroLink3 = new MetroFramework.Controls.MetroLink();
this.metroButton1 = new MetroFramework.Controls.MetroButton();
this.SuspendLayout();
//
// metroLabel1
//
this.metroLabel1.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.metroLabel1.AutoSize = true;
this.metroLabel1.FontSize = MetroFramework.MetroLabelSize.Tall;
this.metroLabel1.Location = new System.Drawing.Point(0, 0);
this.metroLabel1.Name = "metroLabel1";
this.metroLabel1.Size = new System.Drawing.Size(120, 25);
this.metroLabel1.TabIndex = 0;
this.metroLabel1.Text = "开发作者:Emil";
//
// metroLink1
//
this.metroLink1.AutoSize = true;
this.metroLink1.Location = new System.Drawing.Point(3, 55);
this.metroLink1.Name = "metroLink1";
this.metroLink1.Size = new System.Drawing.Size(172, 23);
this.metroLink1.TabIndex = 3;
this.metroLink1.Text = "GitHub:github.com/cdj68765";
this.metroLink1.UseSelectable = true;
this.metroLink1.Click += new System.EventHandler(this.metroLink1_Click);
//
// metroLink2
//
this.metroLink2.Location = new System.Drawing.Point(3, 28);
this.metroLink2.Name = "metroLink2";
this.metroLink2.Size = new System.Drawing.Size(191, 23);
this.metroLink2.TabIndex = 4;
this.metroLink2.Text = "联络邮箱:cdj68765@gmail.com";
this.metroLink2.UseSelectable = true;
this.metroLink2.Click += new System.EventHandler(this.metroLink2_Click);
//
// metroLink3
//
this.metroLink3.Location = new System.Drawing.Point(3, 82);
this.metroLink3.Name = "metroLink3";
this.metroLink3.Size = new System.Drawing.Size(215, 23);
this.metroLink3.TabIndex = 5;
this.metroLink3.Text = "UI:thielj.github.io/MetroFramework/";
this.metroLink3.UseSelectable = true;
this.metroLink3.Click += new System.EventHandler(this.metroLink3_Click);
//
// metroButton1
//
this.metroButton1.Location = new System.Drawing.Point(126, 1);
this.metroButton1.Name = "metroButton1";
this.metroButton1.Size = new System.Drawing.Size(75, 23);
this.metroButton1.TabIndex = 6;
this.metroButton1.Text = "检测更新";
this.metroButton1.UseSelectable = true;
this.metroButton1.UseStyleColors = true;
this.metroButton1.Click += new System.EventHandler(this.metroButton1_Click);
//
// TaskWindowControl
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.metroButton1);
this.Controls.Add(this.metroLink3);
this.Controls.Add(this.metroLink2);
this.Controls.Add(this.metroLink1);
this.Controls.Add(this.metroLabel1);
this.DoubleBuffered = true;
this.Location = new System.Drawing.Point(100, 100);
this.Name = "TaskWindowControl";
this.Size = new System.Drawing.Size(327, 225);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private MetroFramework.Controls.MetroLabel metroLabel1;
private MetroFramework.Controls.MetroLink metroLink1;
private MetroFramework.Controls.MetroLink metroLink2;
private MetroFramework.Controls.MetroLink metroLink3;
private MetroFramework.Controls.MetroButton metroButton1;
}
}