This commit is contained in:
adelikat 2014-08-23 14:36:55 +00:00
parent 982d134cd2
commit b657268b35
2 changed files with 4 additions and 8 deletions

View File

@ -233,13 +233,13 @@ namespace BizHawk.Client.EmuHawk
/// Occurs when a column header is clicked
/// </summary>
[Category("Action")]
public event ColumnClickEventHandler ColumnClick;
public event System.Windows.Forms.ColumnClickEventHandler ColumnClick;
/// <summary>
/// Occurs whenever the 'SelectedItems' property for this control changes
/// </summary>
[Category("Behavior")]
public event SelectedIndexChangedHandler SelectedIndexChanged;
public event System.EventHandler SelectedIndexChanged;
/// <summary>
/// Occurs whenever the mouse wheel is scrolled while the right mouse button is held
@ -259,10 +259,6 @@ namespace BizHawk.Client.EmuHawk
public delegate void CellChangeEventHandler(object sender, CellEventArgs e);
public delegate void ColumnClickEventHandler(object sender, ColumnClickEventArgs e);
public delegate void SelectedIndexChangedHandler(object sender, EventArgs e);
public delegate void RightMouseScrollEventHandler(object sender, MouseEventArgs e);
public class CellEventArgs

View File

@ -102,8 +102,8 @@
this.InputView.Text = "inputRoll1";
this.InputView.VirtualMode = false;
this.InputView.PointedCellChanged += new BizHawk.Client.EmuHawk.InputRoll.CellChangeEventHandler(this.InputView_PointedCellChanged);
this.InputView.ColumnClick += new BizHawk.Client.EmuHawk.InputRoll.ColumnClickEventHandler(this.InputView_ColumnClick);
this.InputView.SelectedIndexChanged += new BizHawk.Client.EmuHawk.InputRoll.SelectedIndexChangedHandler(this.InputView_SelectedIndexChanged);
this.InputView.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.InputView_ColumnClick);
this.InputView.SelectedIndexChanged += new System.EventHandler(this.InputView_SelectedIndexChanged);
//
// OutputLabel
//