-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAssetInfo.Designer.cs
108 lines (102 loc) · 4.93 KB
/
AssetInfo.Designer.cs
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
namespace CaravelEditor
{
partial class AssetInfo
{
/// <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()
{
this.sizeLabel = new System.Windows.Forms.Label();
this.sizeTextBox = new System.Windows.Forms.TextBox();
this.dimensionsTextBox = new System.Windows.Forms.TextBox();
this.dimensionsLabel = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// sizeLabel
//
this.sizeLabel.AutoSize = true;
this.sizeLabel.ForeColor = System.Drawing.SystemColors.Control;
this.sizeLabel.Location = new System.Drawing.Point(21, 12);
this.sizeLabel.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
this.sizeLabel.Name = "sizeLabel";
this.sizeLabel.Size = new System.Drawing.Size(54, 25);
this.sizeLabel.TabIndex = 4;
this.sizeLabel.Text = "Size";
//
// sizeTextBox
//
this.sizeTextBox.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
this.sizeTextBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.sizeTextBox.ForeColor = System.Drawing.SystemColors.Window;
this.sizeTextBox.Location = new System.Drawing.Point(87, 10);
this.sizeTextBox.Margin = new System.Windows.Forms.Padding(6);
this.sizeTextBox.Name = "sizeTextBox";
this.sizeTextBox.ReadOnly = true;
this.sizeTextBox.Size = new System.Drawing.Size(94, 31);
this.sizeTextBox.TabIndex = 5;
this.sizeTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
//
// dimensionsTextBox
//
this.dimensionsTextBox.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
this.dimensionsTextBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.dimensionsTextBox.ForeColor = System.Drawing.SystemColors.Window;
this.dimensionsTextBox.Location = new System.Drawing.Point(351, 10);
this.dimensionsTextBox.Margin = new System.Windows.Forms.Padding(6);
this.dimensionsTextBox.Name = "dimensionsTextBox";
this.dimensionsTextBox.ReadOnly = true;
this.dimensionsTextBox.Size = new System.Drawing.Size(143, 31);
this.dimensionsTextBox.TabIndex = 7;
this.dimensionsTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
//
// dimensionsLabel
//
this.dimensionsLabel.AutoSize = true;
this.dimensionsLabel.ForeColor = System.Drawing.SystemColors.Control;
this.dimensionsLabel.Location = new System.Drawing.Point(215, 12);
this.dimensionsLabel.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
this.dimensionsLabel.Name = "dimensionsLabel";
this.dimensionsLabel.Size = new System.Drawing.Size(124, 25);
this.dimensionsLabel.TabIndex = 6;
this.dimensionsLabel.Text = "Dimensions";
//
// AssetInfo
//
this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 25F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.Controls.Add(this.dimensionsTextBox);
this.Controls.Add(this.dimensionsLabel);
this.Controls.Add(this.sizeTextBox);
this.Controls.Add(this.sizeLabel);
this.Name = "AssetInfo";
this.Size = new System.Drawing.Size(512, 49);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label sizeLabel;
private System.Windows.Forms.TextBox sizeTextBox;
private System.Windows.Forms.TextBox dimensionsTextBox;
private System.Windows.Forms.Label dimensionsLabel;
}
}