Ram watch - remove some useless overrides
This commit is contained in:
parent
cd672da319
commit
fab108c73a
|
@ -916,11 +916,9 @@
|
||||||
this.Name = "RamWatch";
|
this.Name = "RamWatch";
|
||||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
||||||
this.Text = " RAM Watch";
|
this.Text = " RAM Watch";
|
||||||
this.Activated += new System.EventHandler(this.RamWatch_Activated);
|
|
||||||
this.Load += new System.EventHandler(this.RamWatch_Load);
|
this.Load += new System.EventHandler(this.RamWatch_Load);
|
||||||
this.DragDrop += new System.Windows.Forms.DragEventHandler(this.RamWatch_DragDrop);
|
this.DragDrop += new System.Windows.Forms.DragEventHandler(this.RamWatch_DragDrop);
|
||||||
this.DragEnter += new System.Windows.Forms.DragEventHandler(this.DragEnterWrapper);
|
this.DragEnter += new System.Windows.Forms.DragEventHandler(this.DragEnterWrapper);
|
||||||
this.Enter += new System.EventHandler(this.RamWatch_Enter);
|
|
||||||
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.WatchListView_KeyDown);
|
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.WatchListView_KeyDown);
|
||||||
this.ListViewContextMenu.ResumeLayout(false);
|
this.ListViewContextMenu.ResumeLayout(false);
|
||||||
this.statusStrip1.ResumeLayout(false);
|
this.statusStrip1.ResumeLayout(false);
|
||||||
|
|
|
@ -1104,11 +1104,6 @@ namespace BizHawk.Client.EmuHawk
|
||||||
Settings.Columns = WatchListView.AllColumns;
|
Settings.Columns = WatchListView.AllColumns;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void RamWatch_Activated(object sender, EventArgs e)
|
|
||||||
{
|
|
||||||
WatchListView.Refresh();
|
|
||||||
}
|
|
||||||
|
|
||||||
private void RamWatch_DragDrop(object sender, DragEventArgs e)
|
private void RamWatch_DragDrop(object sender, DragEventArgs e)
|
||||||
{
|
{
|
||||||
var filePaths = (string[])e.Data.GetData(DataFormats.FileDrop);
|
var filePaths = (string[])e.Data.GetData(DataFormats.FileDrop);
|
||||||
|
@ -1121,11 +1116,6 @@ namespace BizHawk.Client.EmuHawk
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void RamWatch_Enter(object sender, EventArgs e)
|
|
||||||
{
|
|
||||||
WatchListView.Focus();
|
|
||||||
}
|
|
||||||
|
|
||||||
private void ListViewContextMenu_Opening(object sender, CancelEventArgs e)
|
private void ListViewContextMenu_Opening(object sender, CancelEventArgs e)
|
||||||
{
|
{
|
||||||
var indexes = WatchListView.SelectedRows.ToList();
|
var indexes = WatchListView.SelectedRows.ToList();
|
||||||
|
@ -1265,7 +1255,6 @@ namespace BizHawk.Client.EmuHawk
|
||||||
EditWatch();
|
EditWatch();
|
||||||
}
|
}
|
||||||
|
|
||||||
// InputRoll TODO
|
|
||||||
private void WatchListView_ColumnClick(object sender, InputRoll.ColumnClickEventArgs e)
|
private void WatchListView_ColumnClick(object sender, InputRoll.ColumnClickEventArgs e)
|
||||||
{
|
{
|
||||||
OrderColumn(e.Column);
|
OrderColumn(e.Column);
|
||||||
|
|
Loading…
Reference in New Issue