1 |
using System; |
2 |
using System.Collections.Generic; |
3 |
using System.ComponentModel; |
4 |
using System.Data; |
5 |
using System.Drawing; |
6 |
using System.Linq; |
7 |
using System.Text; |
8 |
using System.Windows.Forms; |
9 |
using WeifenLuo.WinFormsUI.Docking; |
10 |
|
11 |
namespace RomCheater.Docking |
12 |
{ |
13 |
public partial class FloatingRamDumperDialog : DockContent |
14 |
{ |
15 |
public FloatingRamDumperDialog() |
16 |
{ |
17 |
InitializeComponent(); |
18 |
} |
19 |
|
20 |
private void FloatingRamDumperDialog_Load(object sender, EventArgs e) |
21 |
{ |
22 |
txtStart.Value = 0; |
23 |
txtEnd.Value = int.MaxValue; |
24 |
} |
25 |
} |
26 |
} |