-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForm1.Designer.cs
More file actions
132 lines (127 loc) · 4.51 KB
/
Form1.Designer.cs
File metadata and controls
132 lines (127 loc) · 4.51 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 Add_programs_to_the_start_menu {
partial class Form1 {
/// <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() {
button1 = new Button();
openFileDialog1 = new OpenFileDialog();
textBox1 = new TextBox();
button2 = new Button();
textBox2 = new TextBox();
label1 = new Label();
textBox3 = new TextBox();
button3 = new Button();
openFileDialog2 = new OpenFileDialog();
SuspendLayout();
//
// button1
//
button1.Location = new Point(12, 12);
button1.Name = "button1";
button1.Size = new Size(138, 60);
button1.TabIndex = 0;
button1.Text = "Dosya Seç";
button1.UseVisualStyleBackColor = true;
button1.Click += button1_Click;
//
// textBox1
//
textBox1.Location = new Point(156, 32);
textBox1.Name = "textBox1";
textBox1.Size = new Size(296, 23);
textBox1.TabIndex = 1;
//
// button2
//
button2.Location = new Point(124, 141);
button2.Name = "button2";
button2.Size = new Size(214, 50);
button2.TabIndex = 2;
button2.Text = "Oluştur";
button2.UseVisualStyleBackColor = true;
button2.Click += button2_Click;
//
// textBox2
//
textBox2.Location = new Point(156, 112);
textBox2.Name = "textBox2";
textBox2.Size = new Size(214, 23);
textBox2.TabIndex = 3;
//
// label1
//
label1.AutoSize = true;
label1.Location = new Point(87, 120);
label1.Name = "label1";
label1.Size = new Size(63, 15);
label1.TabIndex = 4;
label1.Text = "Dosya Adı:";
//
// textBox3
//
textBox3.Location = new Point(156, 83);
textBox3.Name = "textBox3";
textBox3.Size = new Size(296, 23);
textBox3.TabIndex = 5;
//
// button3
//
button3.Location = new Point(12, 83);
button3.Name = "button3";
button3.Size = new Size(138, 23);
button3.TabIndex = 6;
button3.Text = ".ico Dosyası Seç";
button3.UseVisualStyleBackColor = true;
button3.Click += button3_Click;
//
// openFileDialog2
//
openFileDialog2.Filter = "Icon Dosyası (*.ico)|*.ico";
//
// Form1
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(464, 198);
Controls.Add(button3);
Controls.Add(textBox3);
Controls.Add(label1);
Controls.Add(textBox2);
Controls.Add(button2);
Controls.Add(textBox1);
Controls.Add(button1);
Name = "Form1";
Text = "Başlat Menüsüne Program Ekle";
Load += Form1_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private Button button1;
private OpenFileDialog openFileDialog1;
private TextBox textBox1;
private Button button2;
private TextBox textBox2;
private Label label1;
private TextBox textBox3;
private Button button3;
private OpenFileDialog openFileDialog2;
}
}