-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathSearchForm.Designer.cs
147 lines (141 loc) · 7.82 KB
/
SearchForm.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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
//NCShark - By AlSch092 @ Github, thanks to @Diamondo25 for MapleShark
namespace NCShark
{
partial class SearchForm
{
/// <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.mOpcodeCombo = new System.Windows.Forms.ComboBox();
this.mNextOpcodeButton = new System.Windows.Forms.Button();
this.mPrevOpcodeButton = new System.Windows.Forms.Button();
this.mSequenceHex = new System.Windows.Forms.HexBox();
this.mPrevSequenceButton = new System.Windows.Forms.Button();
this.mNextSequenceButton = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// mOpcodeCombo
//
this.mOpcodeCombo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.mOpcodeCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.mOpcodeCombo.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.mOpcodeCombo.FormattingEnabled = true;
this.mOpcodeCombo.Location = new System.Drawing.Point(3, 3);
this.mOpcodeCombo.Name = "mOpcodeCombo";
this.mOpcodeCombo.Size = new System.Drawing.Size(152, 23);
this.mOpcodeCombo.TabIndex = 4;
this.mOpcodeCombo.SelectedIndexChanged += new System.EventHandler(this.mOpcodeCombo_SelectedIndexChanged);
//
// mNextOpcodeButton
//
this.mNextOpcodeButton.Anchor = System.Windows.Forms.AnchorStyles.Right;
this.mNextOpcodeButton.Enabled = false;
this.mNextOpcodeButton.Location = new System.Drawing.Point(232, 3);
this.mNextOpcodeButton.Name = "mNextOpcodeButton";
this.mNextOpcodeButton.Size = new System.Drawing.Size(65, 25);
this.mNextOpcodeButton.TabIndex = 5;
this.mNextOpcodeButton.Text = "Next";
this.mNextOpcodeButton.UseVisualStyleBackColor = true;
this.mNextOpcodeButton.Click += new System.EventHandler(this.mNextOpcodeButton_Click);
//
// mPrevOpcodeButton
//
this.mPrevOpcodeButton.Anchor = System.Windows.Forms.AnchorStyles.Right;
this.mPrevOpcodeButton.Enabled = false;
this.mPrevOpcodeButton.Location = new System.Drawing.Point(161, 3);
this.mPrevOpcodeButton.Name = "mPrevOpcodeButton";
this.mPrevOpcodeButton.Size = new System.Drawing.Size(65, 25);
this.mPrevOpcodeButton.TabIndex = 9;
this.mPrevOpcodeButton.Text = "Prev";
this.mPrevOpcodeButton.UseVisualStyleBackColor = true;
this.mPrevOpcodeButton.Click += new System.EventHandler(this.mPrevOpcodeButton_Click);
//
// mSequenceHex
//
this.mSequenceHex.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.mSequenceHex.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.mSequenceHex.LineInfoForeColor = System.Drawing.Color.Empty;
this.mSequenceHex.Location = new System.Drawing.Point(3, 32);
this.mSequenceHex.Name = "mSequenceHex";
this.mSequenceHex.ShadowSelectionColor = System.Drawing.Color.FromArgb(((int)(((byte)(100)))), ((int)(((byte)(60)))), ((int)(((byte)(188)))), ((int)(((byte)(255)))));
this.mSequenceHex.Size = new System.Drawing.Size(152, 25);
this.mSequenceHex.TabIndex = 6;
this.mSequenceHex.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.mSequenceHex_KeyPress);
//
// mPrevSequenceButton
//
this.mPrevSequenceButton.Anchor = System.Windows.Forms.AnchorStyles.Right;
this.mPrevSequenceButton.Enabled = false;
this.mPrevSequenceButton.Location = new System.Drawing.Point(161, 32);
this.mPrevSequenceButton.Name = "mPrevSequenceButton";
this.mPrevSequenceButton.Size = new System.Drawing.Size(65, 25);
this.mPrevSequenceButton.TabIndex = 8;
this.mPrevSequenceButton.Text = "Prev";
this.mPrevSequenceButton.UseVisualStyleBackColor = true;
//
// mNextSequenceButton
//
this.mNextSequenceButton.Anchor = System.Windows.Forms.AnchorStyles.Right;
this.mNextSequenceButton.Enabled = false;
this.mNextSequenceButton.Location = new System.Drawing.Point(232, 32);
this.mNextSequenceButton.Name = "mNextSequenceButton";
this.mNextSequenceButton.Size = new System.Drawing.Size(65, 25);
this.mNextSequenceButton.TabIndex = 7;
this.mNextSequenceButton.Text = "Next";
this.mNextSequenceButton.UseVisualStyleBackColor = true;
this.mNextSequenceButton.Click += new System.EventHandler(this.mNextSequenceButton_Click);
//
// SearchForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(300, 60);
this.Controls.Add(this.mNextSequenceButton);
this.Controls.Add(this.mNextOpcodeButton);
this.Controls.Add(this.mPrevSequenceButton);
this.Controls.Add(this.mPrevOpcodeButton);
this.Controls.Add(this.mSequenceHex);
this.Controls.Add(this.mOpcodeCombo);
this.DockAreas = ((WeifenLuo.WinFormsUI.Docking.DockAreas)(((((WeifenLuo.WinFormsUI.Docking.DockAreas.Float | WeifenLuo.WinFormsUI.Docking.DockAreas.DockLeft)
| WeifenLuo.WinFormsUI.Docking.DockAreas.DockRight)
| WeifenLuo.WinFormsUI.Docking.DockAreas.DockTop)
| WeifenLuo.WinFormsUI.Docking.DockAreas.DockBottom)));
this.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.HideOnClose = true;
this.MinimumSize = new System.Drawing.Size(300, 60);
this.Name = "SearchForm";
this.ShowHint = WeifenLuo.WinFormsUI.Docking.DockState.DockTop;
this.Text = "Search";
this.Load += new System.EventHandler(this.SearchForm_Load);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.ComboBox mOpcodeCombo;
private System.Windows.Forms.Button mNextOpcodeButton;
private System.Windows.Forms.HexBox mSequenceHex;
private System.Windows.Forms.Button mNextSequenceButton;
private System.Windows.Forms.Button mPrevOpcodeButton;
private System.Windows.Forms.Button mPrevSequenceButton;
}
}