forked from ReClassNET/ReClass.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMemoryViewControl.Designer.cs
More file actions
75 lines (70 loc) · 2.19 KB
/
Copy pathMemoryViewControl.Designer.cs
File metadata and controls
75 lines (70 loc) · 2.19 KB
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
namespace ReClassNET.UI
{
partial class MemoryViewControl
{
/// <summary>
/// Erforderliche Designervariable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Verwendete Ressourcen bereinigen.
/// </summary>
/// <param name="disposing">True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Vom Komponenten-Designer generierter Code
/// <summary>
/// Erforderliche Methode für die Designerunterstützung.
/// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.repaintTimer = new System.Windows.Forms.Timer(this.components);
this.editBox = new ReClassNET.UI.HotSpotTextBox();
this.nodeInfoToolTip = new System.Windows.Forms.ToolTip(this.components);
this.SuspendLayout();
//
// repaintTimer
//
this.repaintTimer.Enabled = true;
this.repaintTimer.Interval = 250;
this.repaintTimer.Tick += new System.EventHandler(this.repaintTimer_Tick);
//
// editBox
//
this.editBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.editBox.Location = new System.Drawing.Point(36, 81);
this.editBox.MinimumWidth = 0;
this.editBox.Name = "editBox";
this.editBox.Size = new System.Drawing.Size(100, 13);
this.editBox.TabIndex = 1;
this.editBox.TabStop = false;
this.editBox.Visible = false;
this.editBox.Committed += new System.EventHandler(this.editBox_Committed);
//
// nodeInfoToolTip
//
this.nodeInfoToolTip.ShowAlways = true;
//
// MemoryViewControl
//
this.Controls.Add(this.editBox);
this.DoubleBuffered = true;
this.Name = "MemoryViewControl";
this.Size = new System.Drawing.Size(150, 162);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Timer repaintTimer;
private HotSpotTextBox editBox;
private System.Windows.Forms.ToolTip nodeInfoToolTip;
}
}