-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSettingWindow.Designer.cs
More file actions
106 lines (101 loc) · 3.85 KB
/
Copy pathSettingWindow.Designer.cs
File metadata and controls
106 lines (101 loc) · 3.85 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
namespace PrizeDrawTool
{
partial class SettingWindow
{
/// <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()
{
BannerSettingBtn = new Button();
ClearBannerBtn = new Button();
BannerSettingLabel = new Label();
BannerTipsLabel = new Label();
SuspendLayout();
//
// BannerSettingBtn
//
BannerSettingBtn.Location = new Point(125, 29);
BannerSettingBtn.Name = "BannerSettingBtn";
BannerSettingBtn.Size = new Size(94, 29);
BannerSettingBtn.TabIndex = 0;
BannerSettingBtn.Text = "添加图片";
BannerSettingBtn.UseVisualStyleBackColor = true;
BannerSettingBtn.Click += BannerSettingBtn_Click;
//
// ClearBannerBtn
//
ClearBannerBtn.Location = new Point(225, 29);
ClearBannerBtn.Name = "ClearBannerBtn";
ClearBannerBtn.Size = new Size(94, 29);
ClearBannerBtn.TabIndex = 1;
ClearBannerBtn.Text = "清空图片";
ClearBannerBtn.UseVisualStyleBackColor = true;
ClearBannerBtn.Click += ClearBannerBtn_Click;
//
// BannerSettingLabel
//
BannerSettingLabel.AutoSize = true;
BannerSettingLabel.Location = new Point(35, 33);
BannerSettingLabel.Name = "BannerSettingLabel";
BannerSettingLabel.Size = new Size(84, 20);
BannerSettingLabel.TabIndex = 2;
BannerSettingLabel.Text = "横幅设置:";
//
// BannerTipsLabel
//
BannerTipsLabel.AutoSize = true;
BannerTipsLabel.ForeColor = SystemColors.Highlight;
BannerTipsLabel.Location = new Point(35, 61);
BannerTipsLabel.Name = "BannerTipsLabel";
BannerTipsLabel.Size = new Size(168, 20);
BannerTipsLabel.TabIndex = 3;
BannerTipsLabel.Text = "(推荐分辨率1009×120)";
//
// SettingWindow
//
AutoScaleDimensions = new SizeF(9F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(367, 228);
Controls.Add(BannerTipsLabel);
Controls.Add(ClearBannerBtn);
Controls.Add(BannerSettingBtn);
Controls.Add(BannerSettingLabel);
Font = new Font("Microsoft YaHei UI", 9F, FontStyle.Regular, GraphicsUnit.Point, 134);
FormBorderStyle = FormBorderStyle.FixedDialog;
MaximizeBox = false;
MinimizeBox = false;
Name = "SettingWindow";
ShowIcon = false;
ShowInTaskbar = false;
StartPosition = FormStartPosition.CenterParent;
Text = "设置";
TopMost = true;
ResumeLayout(false);
PerformLayout();
}
#endregion
private Button BannerSettingBtn;
private Button ClearBannerBtn;
private Label BannerSettingLabel;
private Label BannerTipsLabel;
}
}