-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTaskDlgControlDesigner_RadioMakeDlg.Designer.cs
More file actions
132 lines (128 loc) · 4.43 KB
/
Copy pathTaskDlgControlDesigner_RadioMakeDlg.Designer.cs
File metadata and controls
132 lines (128 loc) · 4.43 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
namespace Windows_Dialog_Box_Generator
{
partial class TaskDlgControlDesigner_RadioMakeDlg
{
/// <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()
{
textBox1 = new TextBox();
label1 = new Label();
checkBox1 = new CheckBox();
checkBox2 = new CheckBox();
button1 = new Button();
button2 = new Button();
SuspendLayout();
//
// textBox1
//
textBox1.Location = new Point(12, 37);
textBox1.Name = "textBox1";
textBox1.PlaceholderText = "Text...";
textBox1.Size = new Size(237, 23);
textBox1.TabIndex = 0;
//
// label1
//
label1.AutoSize = true;
label1.Location = new Point(12, 15);
label1.Name = "label1";
label1.Size = new Size(31, 15);
label1.TabIndex = 1;
label1.Text = "Text:";
//
// checkBox1
//
checkBox1.AutoSize = true;
checkBox1.Checked = true;
checkBox1.CheckState = CheckState.Checked;
checkBox1.Location = new Point(12, 79);
checkBox1.Name = "checkBox1";
checkBox1.Size = new Size(72, 19);
checkBox1.TabIndex = 2;
checkBox1.Text = "Checked";
checkBox1.UseVisualStyleBackColor = true;
//
// checkBox2
//
checkBox2.AutoSize = true;
checkBox2.Checked = true;
checkBox2.CheckState = CheckState.Checked;
checkBox2.Location = new Point(172, 79);
checkBox2.Name = "checkBox2";
checkBox2.Size = new Size(68, 19);
checkBox2.TabIndex = 3;
checkBox2.Text = "Enabled";
checkBox2.UseVisualStyleBackColor = true;
//
// button1
//
button1.DialogResult = DialogResult.OK;
button1.Location = new Point(165, 109);
button1.Name = "button1";
button1.Size = new Size(75, 23);
button1.TabIndex = 4;
button1.Text = "OK";
button1.UseVisualStyleBackColor = true;
//
// button2
//
button2.DialogResult = DialogResult.Cancel;
button2.Location = new Point(84, 109);
button2.Name = "button2";
button2.Size = new Size(75, 23);
button2.TabIndex = 5;
button2.Text = "Cancel";
button2.UseVisualStyleBackColor = true;
//
// TaskDlgControlDesigner_RadioMakeDlg
//
AcceptButton = button1;
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
CancelButton = button2;
ClientSize = new Size(261, 139);
Controls.Add(button2);
Controls.Add(button1);
Controls.Add(checkBox2);
Controls.Add(checkBox1);
Controls.Add(label1);
Controls.Add(textBox1);
FormBorderStyle = FormBorderStyle.FixedDialog;
MaximizeBox = false;
MinimizeBox = false;
Name = "TaskDlgControlDesigner_RadioMakeDlg";
ShowIcon = false;
ShowInTaskbar = false;
Text = "Add radio button";
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label label1;
private Button button1;
private Button button2;
public TextBox textBox1;
public CheckBox checkBox1;
public CheckBox checkBox2;
}
}