-
Notifications
You must be signed in to change notification settings - Fork 396
Expand file tree
/
Copy pathColorBox.Designer.cs
More file actions
70 lines (64 loc) · 2.11 KB
/
ColorBox.Designer.cs
File metadata and controls
70 lines (64 loc) · 2.11 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
namespace ReClassNET.Controls
{
partial class ColorBox
{
/// <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 Komponenten-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.valueTextBox = new System.Windows.Forms.TextBox();
this.colorPanel = new System.Windows.Forms.Panel();
this.SuspendLayout();
//
// valueTextBox
//
this.valueTextBox.Location = new System.Drawing.Point(37, 0);
this.valueTextBox.Name = "valueTextBox";
this.valueTextBox.Size = new System.Drawing.Size(86, 20);
this.valueTextBox.TabIndex = 0;
this.valueTextBox.TextChanged += new System.EventHandler(this.OnTextChanged);
//
// colorPanel
//
this.colorPanel.Location = new System.Drawing.Point(0, 0);
this.colorPanel.Name = "colorPanel";
this.colorPanel.Size = new System.Drawing.Size(30, 20);
this.colorPanel.TabIndex = 1;
this.colorPanel.Click += new System.EventHandler(this.OnPanelClick);
this.colorPanel.Paint += new System.Windows.Forms.PaintEventHandler(this.OnPanelPaint);
//
// ColorBox
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.colorPanel);
this.Controls.Add(this.valueTextBox);
this.Name = "ColorBox";
this.Size = new System.Drawing.Size(123, 20);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox valueTextBox;
private System.Windows.Forms.Panel colorPanel;
}
}