forked from ShootMe/LiveSplit.HollowKnight
-
Notifications
You must be signed in to change notification settings - Fork 4
/
HollowKnightSplitSettings.Designer.cs
127 lines (122 loc) · 5.93 KB
/
HollowKnightSplitSettings.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
namespace LiveSplit.HollowKnight {
partial class HollowKnightSplitSettings {
/// <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.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(HollowKnightSplitSettings));
this.btnRemove = new System.Windows.Forms.Button();
this.cboName = new System.Windows.Forms.ComboBox();
this.ToolTips = new System.Windows.Forms.ToolTip(this.components);
this.picHandle = new System.Windows.Forms.PictureBox();
this.btnEdit = new System.Windows.Forms.Button();
this.btnAddBelow = new System.Windows.Forms.Button();
this.btnAddAbove = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.picHandle)).BeginInit();
this.SuspendLayout();
//
// btnRemove
//
this.btnRemove.Image = ((System.Drawing.Image)(resources.GetObject("btnRemove.Image")));
this.btnRemove.Location = new System.Drawing.Point(274, 2);
this.btnRemove.Name = "btnRemove";
this.btnRemove.Size = new System.Drawing.Size(26, 23);
this.btnRemove.TabIndex = 4;
this.ToolTips.SetToolTip(this.btnRemove, "Remove this setting");
this.btnRemove.UseVisualStyleBackColor = true;
//
// cboName
//
this.cboName.FormattingEnabled = true;
this.cboName.Location = new System.Drawing.Point(22, 3);
this.cboName.Name = "cboName";
this.cboName.Size = new System.Drawing.Size(246, 21);
this.cboName.TabIndex = 0;
this.cboName.SelectedIndexChanged += new System.EventHandler(this.cboName_SelectedIndexChanged);
//
// picHandle
//
this.picHandle.Cursor = System.Windows.Forms.Cursors.SizeAll;
this.picHandle.Image = ((System.Drawing.Image)(resources.GetObject("picHandle.Image")));
this.picHandle.Location = new System.Drawing.Point(3, 4);
this.picHandle.Name = "picHandle";
this.picHandle.Size = new System.Drawing.Size(20, 20);
this.picHandle.TabIndex = 5;
this.picHandle.TabStop = false;
this.picHandle.MouseDown += new System.Windows.Forms.MouseEventHandler(this.picHandle_MouseDown);
this.picHandle.MouseMove += new System.Windows.Forms.MouseEventHandler(this.picHandle_MouseMove);
//
// btnEdit
//
this.btnEdit.Location = new System.Drawing.Point(306, 2);
this.btnEdit.Name = "btnEdit";
this.btnEdit.Size = new System.Drawing.Size(26, 23);
this.btnEdit.TabIndex = 6;
this.btnEdit.Text = "✏";
this.ToolTips.SetToolTip(this.btnEdit, "edit this setting");
this.btnEdit.UseVisualStyleBackColor = true;
//
// btnAddBelow
//
this.btnAddBelow.Location = new System.Drawing.Point(378, 2);
this.btnAddBelow.Name = "btnAddBelow";
this.btnAddBelow.Size = new System.Drawing.Size(34, 23);
this.btnAddBelow.TabIndex = 8;
this.btnAddBelow.Text = "+↓";
this.ToolTips.SetToolTip(this.btnAddBelow, "add a split below this");
this.btnAddBelow.UseVisualStyleBackColor = true;
//
// btnAddAbove
//
this.btnAddAbove.Location = new System.Drawing.Point(338, 2);
this.btnAddAbove.Name = "btnAddAbove";
this.btnAddAbove.Size = new System.Drawing.Size(34, 23);
this.btnAddAbove.TabIndex = 7;
this.btnAddAbove.Text = "+↑";
this.ToolTips.SetToolTip(this.btnAddAbove, "add a split above this");
this.btnAddAbove.UseVisualStyleBackColor = true;
//
// HollowKnightSplitSettings
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoSize = true;
this.Controls.Add(this.btnAddBelow);
this.Controls.Add(this.btnAddAbove);
this.Controls.Add(this.btnEdit);
this.Controls.Add(this.btnRemove);
this.Controls.Add(this.cboName);
this.Controls.Add(this.picHandle);
this.Margin = new System.Windows.Forms.Padding(0);
this.Name = "HollowKnightSplitSettings";
this.Size = new System.Drawing.Size(415, 30);
((System.ComponentModel.ISupportInitialize)(this.picHandle)).EndInit();
this.ResumeLayout(false);
}
#endregion
public System.Windows.Forms.Button btnRemove;
public System.Windows.Forms.ComboBox cboName;
public System.Windows.Forms.Button btnEdit;
private System.Windows.Forms.ToolTip ToolTips;
private System.Windows.Forms.PictureBox picHandle;
public System.Windows.Forms.Button btnAddBelow;
public System.Windows.Forms.Button btnAddAbove;
}
}