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
|
namespace love2dToAPK.Forms {
partial class frmSettings {
/// <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.cbAlwaysOnTop = new System.Windows.Forms.CheckBox();
this.cbCloseOnSuccess = new System.Windows.Forms.CheckBox();
this.panel1 = new System.Windows.Forms.Panel();
this.btnSave = new love2dToAPK.Controls.minimalButton();
this.panel1.SuspendLayout();
this.SuspendLayout();
//
// cbAlwaysOnTop
//
this.cbAlwaysOnTop.AutoSize = true;
this.cbAlwaysOnTop.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.cbAlwaysOnTop.Location = new System.Drawing.Point(13, 13);
this.cbAlwaysOnTop.Name = "cbAlwaysOnTop";
this.cbAlwaysOnTop.Size = new System.Drawing.Size(145, 17);
this.cbAlwaysOnTop.TabIndex = 1;
this.cbAlwaysOnTop.Text = "Window always on top";
this.cbAlwaysOnTop.UseVisualStyleBackColor = true;
//
// cbCloseOnSuccess
//
this.cbCloseOnSuccess.AutoSize = true;
this.cbCloseOnSuccess.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.cbCloseOnSuccess.Location = new System.Drawing.Point(13, 36);
this.cbCloseOnSuccess.Name = "cbCloseOnSuccess";
this.cbCloseOnSuccess.Size = new System.Drawing.Size(260, 17);
this.cbCloseOnSuccess.TabIndex = 2;
this.cbCloseOnSuccess.Text = "Close output-window if build was successfull";
this.cbCloseOnSuccess.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.cbCloseOnSuccess.UseVisualStyleBackColor = true;
//
// panel1
//
this.panel1.BackColor = System.Drawing.Color.White;
this.panel1.Controls.Add(this.cbAlwaysOnTop);
this.panel1.Controls.Add(this.cbCloseOnSuccess);
this.panel1.Location = new System.Drawing.Point(12, 55);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(289, 67);
this.panel1.TabIndex = 3;
//
// btnSave
//
this.btnSave.AutoSize = true;
this.btnSave.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
this.btnSave.BackgroundColor = System.Drawing.SystemColors.Control;
this.btnSave.Font = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnSave.ForeColor = System.Drawing.Color.White;
this.btnSave.ForegroundColor = System.Drawing.Color.White;
this.btnSave.Location = new System.Drawing.Point(239, 135);
this.btnSave.Name = "btnSave";
this.btnSave.Padding = new System.Windows.Forms.Padding(5);
this.btnSave.Size = new System.Drawing.Size(61, 35);
this.btnSave.TabIndex = 4;
this.btnSave.Text = "Save";
this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
//
// frmSettings
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.ClientSize = new System.Drawing.Size(317, 183);
this.Controls.Add(this.btnSave);
this.Controls.Add(this.panel1);
this.Name = "frmSettings";
this.Load += new System.EventHandler(this.frmSettings_Load);
this.Controls.SetChildIndex(this.panel1, 0);
this.Controls.SetChildIndex(this.btnSave, 0);
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.CheckBox cbAlwaysOnTop;
private System.Windows.Forms.CheckBox cbCloseOnSuccess;
private System.Windows.Forms.Panel panel1;
private Controls.minimalButton btnSave;
}
}
|