-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDrawer.Designer.cs
More file actions
107 lines (101 loc) · 4.51 KB
/
Drawer.Designer.cs
File metadata and controls
107 lines (101 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
namespace CodePainterApp
{
partial class Drawer
{
/// <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 Component 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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Drawer));
this.pctDown = new System.Windows.Forms.PictureBox();
this.pctRight = new System.Windows.Forms.PictureBox();
this.pctUp = new System.Windows.Forms.PictureBox();
this.pctLeft = new System.Windows.Forms.PictureBox();
((System.ComponentModel.ISupportInitialize)(this.pctDown)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pctRight)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pctUp)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pctLeft)).BeginInit();
this.SuspendLayout();
//
// pctDown
//
this.pctDown.Image = ((System.Drawing.Image)(resources.GetObject("pctDown.Image")));
this.pctDown.Location = new System.Drawing.Point(0, 0);
this.pctDown.Name = "pctDown";
this.pctDown.Size = new System.Drawing.Size(20, 20);
this.pctDown.TabIndex = 0;
this.pctDown.TabStop = false;
//
// pctRight
//
this.pctRight.Image = ((System.Drawing.Image)(resources.GetObject("pctRight.Image")));
this.pctRight.Location = new System.Drawing.Point(0, 0);
this.pctRight.Name = "pctRight";
this.pctRight.Size = new System.Drawing.Size(20, 20);
this.pctRight.TabIndex = 1;
this.pctRight.TabStop = false;
this.pctRight.Visible = false;
//
// pctUp
//
this.pctUp.Image = ((System.Drawing.Image)(resources.GetObject("pctUp.Image")));
this.pctUp.Location = new System.Drawing.Point(0, 0);
this.pctUp.Name = "pctUp";
this.pctUp.Size = new System.Drawing.Size(20, 20);
this.pctUp.TabIndex = 2;
this.pctUp.TabStop = false;
this.pctUp.Visible = false;
//
// pctLeft
//
this.pctLeft.Image = ((System.Drawing.Image)(resources.GetObject("pctLeft.Image")));
this.pctLeft.Location = new System.Drawing.Point(0, 0);
this.pctLeft.Name = "pctLeft";
this.pctLeft.Size = new System.Drawing.Size(20, 20);
this.pctLeft.TabIndex = 3;
this.pctLeft.TabStop = false;
this.pctLeft.Visible = false;
//
// Drawer
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.Transparent;
this.Controls.Add(this.pctLeft);
this.Controls.Add(this.pctUp);
this.Controls.Add(this.pctRight);
this.Controls.Add(this.pctDown);
this.Name = "Drawer";
this.Size = new System.Drawing.Size(20, 20);
((System.ComponentModel.ISupportInitialize)(this.pctDown)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.pctRight)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.pctUp)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.pctLeft)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.PictureBox pctDown;
private System.Windows.Forms.PictureBox pctRight;
private System.Windows.Forms.PictureBox pctUp;
private System.Windows.Forms.PictureBox pctLeft;
}
}