-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFormColorPick.Designer.cs
More file actions
84 lines (78 loc) · 3.29 KB
/
FormColorPick.Designer.cs
File metadata and controls
84 lines (78 loc) · 3.29 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
namespace TFEditor {
partial class FormColorPick {
/// <summary>
/// Erforderliche Designervariable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Verwendete Ressourcen bereinigen.
/// </summary>
/// <param name="disposing">True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False.</param>
protected override void Dispose(bool disposing) {
if (disposing && (components != null)) {
components.Dispose();
}
base.Dispose(disposing);
}
#region Vom Windows Form-Designer generierter Code
/// <summary>
/// Erforderliche Methode für die Designerunterstützung.
/// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
/// </summary>
private void InitializeComponent() {
this.labelColor = new System.Windows.Forms.Label();
this.button_OK = new System.Windows.Forms.Button();
this.button_Cancel = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// labelColor
//
this.labelColor.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.labelColor.Location = new System.Drawing.Point(12, 9);
this.labelColor.Name = "labelColor";
this.labelColor.Size = new System.Drawing.Size(210, 38);
this.labelColor.TabIndex = 0;
//
// button_OK
//
this.button_OK.DialogResult = System.Windows.Forms.DialogResult.OK;
this.button_OK.Location = new System.Drawing.Point(12, 72);
this.button_OK.Name = "button_OK";
this.button_OK.Size = new System.Drawing.Size(86, 31);
this.button_OK.TabIndex = 1;
this.button_OK.Text = "OK";
this.button_OK.UseVisualStyleBackColor = true;
//
// button_Cancel
//
this.button_Cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.button_Cancel.Location = new System.Drawing.Point(136, 72);
this.button_Cancel.Name = "button_Cancel";
this.button_Cancel.Size = new System.Drawing.Size(86, 31);
this.button_Cancel.TabIndex = 2;
this.button_Cancel.Text = "Abbruch";
this.button_Cancel.UseVisualStyleBackColor = true;
//
// FormColorPick
//
this.AcceptButton = this.button_OK;
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.button_Cancel;
this.ClientSize = new System.Drawing.Size(234, 130);
this.ControlBox = false;
this.Controls.Add(this.button_Cancel);
this.Controls.Add(this.button_OK);
this.Controls.Add(this.labelColor);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Name = "FormColorPick";
this.Text = "Transparente Farbe setzen";
this.Load += new System.EventHandler(this.FormColorPick_Load);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Label labelColor;
private System.Windows.Forms.Button button_OK;
private System.Windows.Forms.Button button_Cancel;
}
}