-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathForm2.Designer.cs
108 lines (99 loc) · 4.32 KB
/
Form2.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
using System.Windows.Forms;
namespace mapdas
{
partial class DisasmView
{
/// <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.ppcView = new SyncTextBox(ScrollBars.Vertical);
this.hexView = new SyncTextBox(ScrollBars.None);
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DisasmView));
this.funcIdentityView = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// ppcView
//
this.ppcView.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(32)))), ((int)(((byte)(32)))));
this.ppcView.Buddy = this.hexView;
this.ppcView.Font = new System.Drawing.Font("Lucida Console", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.ppcView.ForeColor = System.Drawing.SystemColors.Control;
this.ppcView.Location = new System.Drawing.Point(89, 49);
this.ppcView.Multiline = true;
this.ppcView.Name = "ppcView";
this.ppcView.ReadOnly = true;
this.ppcView.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.ppcView.Size = new System.Drawing.Size(865, 600);
this.ppcView.TabIndex = 0;
this.ppcView.WordWrap = false;
//
// hexView
//
this.hexView.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(32)))), ((int)(((byte)(32)))));
this.hexView.Buddy = this.ppcView;
this.hexView.Font = new System.Drawing.Font("Lucida Console", 9F);
this.hexView.ForeColor = System.Drawing.SystemColors.Control;
this.hexView.Location = new System.Drawing.Point(12, 49);
this.hexView.Multiline = true;
this.hexView.Name = "hexView";
this.hexView.ReadOnly = true;
this.hexView.Size = new System.Drawing.Size(78, 600);
this.hexView.TabIndex = 1;
this.hexView.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
this.hexView.WordWrap = false;
//
// funcIdentityView
//
this.funcIdentityView.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(32)))), ((int)(((byte)(32)))));
this.funcIdentityView.Font = new System.Drawing.Font("Lucida Console", 15F);
this.funcIdentityView.ForeColor = System.Drawing.SystemColors.Control;
this.funcIdentityView.Location = new System.Drawing.Point(12, 12);
this.funcIdentityView.Name = "funcIdentityView";
this.funcIdentityView.ReadOnly = true;
this.funcIdentityView.Size = new System.Drawing.Size(942, 27);
this.funcIdentityView.TabIndex = 2;
this.funcIdentityView.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
this.funcIdentityView.WordWrap = false;
//
// DisasmView
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.ClientSize = new System.Drawing.Size(966, 661);
this.Controls.Add(this.funcIdentityView);
this.Controls.Add(this.hexView);
this.Controls.Add(this.ppcView);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "DisasmView";
this.Text = "Disassembly View";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private SyncTextBox ppcView;
private SyncTextBox hexView;
private System.Windows.Forms.TextBox funcIdentityView;
}
}