-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCanvasSizeDialog.Designer.cs
107 lines (101 loc) · 4.04 KB
/
CanvasSizeDialog.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
namespace XNALara
{
partial class CanvasSizeDialog
{
/// <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() {
this.label = new System.Windows.Forms.Label();
this.comboBox = new System.Windows.Forms.ComboBox();
this.buttonOK = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// label
//
this.label.AutoSize = true;
this.label.Location = new System.Drawing.Point(12, 15);
this.label.Name = "label";
this.label.Size = new System.Drawing.Size(86, 17);
this.label.TabIndex = 0;
this.label.Text = "canvas size:";
//
// comboBox
//
this.comboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBox.FormattingEnabled = true;
this.comboBox.Items.AddRange(new object[] {
"700x700 (1:1, default)",
"320x240 (4:3)",
"512x384 (4:3)",
"640x480 (4:3)",
"720x540 (4:3)",
"800x600 (4:3)",
"960x720 (4:3)",
"1024x768 (4:3)",
"1280x960 (4:3)",
"1600x1200 (4:3)",
"320x180 (16:9)",
"512x288 (16:9)",
"640x360 (16:9)",
"720x405 (16:9)",
"800x450 (16:9)",
"960x540 (16:9)",
"1024x576 (16:9)",
"1280x720 (16:9)",
"1600x900 (16:9)"});
this.comboBox.Location = new System.Drawing.Point(104, 12);
this.comboBox.Name = "comboBox";
this.comboBox.Size = new System.Drawing.Size(175, 24);
this.comboBox.TabIndex = 1;
//
// buttonOK
//
this.buttonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
this.buttonOK.Location = new System.Drawing.Point(15, 54);
this.buttonOK.Name = "buttonOK";
this.buttonOK.Size = new System.Drawing.Size(264, 27);
this.buttonOK.TabIndex = 2;
this.buttonOK.Text = "OK";
this.buttonOK.UseVisualStyleBackColor = true;
//
// CanvasSizeDialog
//
this.AcceptButton = this.buttonOK;
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
this.ClientSize = new System.Drawing.Size(294, 99);
this.Controls.Add(this.buttonOK);
this.Controls.Add(this.comboBox);
this.Controls.Add(this.label);
this.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "CanvasSizeDialog";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Set 3D canvas size";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label;
private System.Windows.Forms.ComboBox comboBox;
private System.Windows.Forms.Button buttonOK;
}
}