internal MemoryViewer(MainFormThreadEventDispatcher ted, string address) { InitializeComponent(); this.ted = ted; this.centerAdress = uint.Parse(address, System.Globalization.NumberStyles.HexNumber, System.Globalization.CultureInfo.CurrentCulture); ResultingCodes = new List <SaveCode>(); }
public MainForm(NTRRemoteConnection NTRConnection) { InitializeComponent(); this.NTRConnection = NTRConnection; this.ThreadEventDispatcher = new MainFormThreadEventDispatcher(this); this.EventDispatcherThread = new Thread(new ThreadStart(this.ThreadEventDispatcher.ThreadEventDispatcher)); this.EventDispatcherThread.Name = "EventDispatcherThread"; this.EventDispatcherThread.Start(); }
public MainForm(NTRRemoteConnection NTRConnection) { InitializeComponent(); this.NTRConnection = NTRConnection; this.ThreadEventDispatcher = new MainFormThreadEventDispatcher(this); this.EventDispatcherThread = new Thread(new ThreadStart(this.ThreadEventDispatcher.ThreadEventDispatcher)); this.EventDispatcherThread.Name = "EventDispatcherThread"; this.EventDispatcherThread.Start(); this.ThreadButtonState = new MainFormThreadButtonState(this); this.ButtonStateThread = new Thread(new ThreadStart(this.ThreadButtonState.ThreadButtonState)); this.ButtonStateThread.Name = "ButtonStateThread"; this.ButtonStateThread.Start(); this.IP.Text = Config.DefaultIP; LockValuesStopwatch.Start(); }