Ram watch - remove some useless overrides

This commit is contained in:
adelikat 2019-11-26 11:51:57 -06:00
parent cd672da319
commit fab108c73a
2 changed files with 0 additions and 13 deletions

View File

@ -916,11 +916,9 @@
this.Name = "RamWatch";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = " RAM Watch";
this.Activated += new System.EventHandler(this.RamWatch_Activated);
this.Load += new System.EventHandler(this.RamWatch_Load);
this.DragDrop += new System.Windows.Forms.DragEventHandler(this.RamWatch_DragDrop);
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.ListViewContextMenu.ResumeLayout(false);
this.statusStrip1.ResumeLayout(false);

View File

@ -1104,11 +1104,6 @@ namespace BizHawk.Client.EmuHawk
Settings.Columns = WatchListView.AllColumns;
}
private void RamWatch_Activated(object sender, EventArgs e)
{
WatchListView.Refresh();
}
private void RamWatch_DragDrop(object sender, DragEventArgs e)
{
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)
{
var indexes = WatchListView.SelectedRows.ToList();
@ -1265,7 +1255,6 @@ namespace BizHawk.Client.EmuHawk
EditWatch();
}
// InputRoll TODO
private void WatchListView_ColumnClick(object sender, InputRoll.ColumnClickEventArgs e)
{
OrderColumn(e.Column);