2011-04-07 00:46:10 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Data;
|
|
|
|
|
using System.Drawing;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
|
2011-04-07 01:30:42 +00:00
|
|
|
|
namespace BizHawk.MultiClient
|
2011-04-07 00:46:10 +00:00
|
|
|
|
{
|
|
|
|
|
public partial class ToolBox : Form
|
|
|
|
|
{
|
|
|
|
|
public ToolBox()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
}
|
2011-04-07 01:30:42 +00:00
|
|
|
|
|
|
|
|
|
private void ToolBox_Load(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
int x = Global.MainForm.Location.X + Global.MainForm.Size.Width;
|
|
|
|
|
int y = Global.MainForm.Location.Y;
|
|
|
|
|
Location = new Point(x, y);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void toolStripButton1_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
Global.MainForm.LoadCheatsWindow();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void toolStripButton2_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
Global.MainForm.LoadRamWatch();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void toolStripButton3_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
Global.MainForm.LoadRamSearch();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void toolStripButton4_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
RamPoke r = new RamPoke();
|
|
|
|
|
r.Show();
|
|
|
|
|
}
|
2011-04-07 00:46:10 +00:00
|
|
|
|
}
|
|
|
|
|
}
|