-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTaskDlgControlDesigner.Designer.cs
More file actions
179 lines (174 loc) · 6.13 KB
/
Copy pathTaskDlgControlDesigner.Designer.cs
File metadata and controls
179 lines (174 loc) · 6.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
namespace Windows_Dialog_Box_Generator
{
partial class TaskDlgControlDesigner
{
/// <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()
{
components = new System.ComponentModel.Container();
button1 = new Button();
button2 = new Button();
label1 = new Label();
listView1 = new ListView();
columnHeader1 = new ColumnHeader();
columnHeader2 = new ColumnHeader();
columnHeader3 = new ColumnHeader();
imgList = new ImageList(components);
button3 = new Button();
button4 = new Button();
button6 = new Button();
SuspendLayout();
//
// button1
//
button1.DialogResult = DialogResult.OK;
button1.Location = new Point(268, 444);
button1.Name = "button1";
button1.Size = new Size(75, 23);
button1.TabIndex = 0;
button1.Text = "OK";
button1.UseVisualStyleBackColor = true;
//
// button2
//
button2.DialogResult = DialogResult.Cancel;
button2.Location = new Point(187, 444);
button2.Name = "button2";
button2.Size = new Size(75, 23);
button2.TabIndex = 1;
button2.Text = "Cancel";
button2.UseVisualStyleBackColor = true;
//
// label1
//
label1.AutoSize = true;
label1.Location = new Point(8, 8);
label1.Name = "label1";
label1.Size = new Size(172, 15);
label1.TabIndex = 2;
label1.Text = "Add controls to the task dialog.";
//
// listView1
//
listView1.Columns.AddRange(new ColumnHeader[] { columnHeader1, columnHeader2, columnHeader3 });
listView1.FullRowSelect = true;
listView1.GridLines = true;
listView1.Location = new Point(13, 40);
listView1.Name = "listView1";
listView1.Size = new Size(330, 370);
listView1.SmallImageList = imgList;
listView1.TabIndex = 3;
listView1.UseCompatibleStateImageBehavior = false;
listView1.View = View.Details;
listView1.SelectedIndexChanged += listView1_SelectedIndexChanged;
//
// columnHeader1
//
columnHeader1.Text = "Name";
columnHeader1.Width = 120;
//
// columnHeader2
//
columnHeader2.Text = "Enabled";
columnHeader2.Width = 80;
//
// columnHeader3
//
columnHeader3.Text = "Checked";
columnHeader3.Width = 90;
//
// imgList
//
imgList.ColorDepth = ColorDepth.Depth32Bit;
imgList.ImageSize = new Size(16, 16);
imgList.TransparentColor = Color.Transparent;
//
// button3
//
button3.Location = new Point(22, 415);
button3.Name = "button3";
button3.Size = new Size(99, 23);
button3.TabIndex = 4;
button3.Text = "Add button";
button3.UseVisualStyleBackColor = true;
button3.Click += button3_Click;
//
// button4
//
button4.Location = new Point(127, 415);
button4.Name = "button4";
button4.Size = new Size(112, 23);
button4.TabIndex = 5;
button4.Text = "Add radio button";
button4.UseVisualStyleBackColor = true;
button4.Click += button4_Click;
//
// button6
//
button6.Enabled = false;
button6.Location = new Point(245, 415);
button6.Name = "button6";
button6.Size = new Size(91, 23);
button6.TabIndex = 7;
button6.Text = "Delete";
button6.UseVisualStyleBackColor = true;
button6.Click += button6_Click;
//
// TaskDlgControlDesigner
//
AcceptButton = button1;
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
CancelButton = button2;
ClientSize = new Size(355, 479);
Controls.Add(button6);
Controls.Add(button4);
Controls.Add(button3);
Controls.Add(listView1);
Controls.Add(label1);
Controls.Add(button2);
Controls.Add(button1);
FormBorderStyle = FormBorderStyle.FixedDialog;
MaximizeBox = false;
MinimizeBox = false;
Name = "TaskDlgControlDesigner";
ShowIcon = false;
ShowInTaskbar = false;
Text = "Task Dialog Controls";
ResumeLayout(false);
PerformLayout();
}
#endregion
private Button button1;
private Button button2;
private Label label1;
private ListView listView1;
private Button button3;
private Button button4;
private Button button6;
private ColumnHeader columnHeader1;
private ColumnHeader columnHeader2;
private ColumnHeader columnHeader3;
private ImageList imgList;
}
}