Ditto
This commit is contained in:
parent
982d134cd2
commit
b657268b35
|
@ -233,13 +233,13 @@ namespace BizHawk.Client.EmuHawk
|
||||||
/// Occurs when a column header is clicked
|
/// Occurs when a column header is clicked
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[Category("Action")]
|
[Category("Action")]
|
||||||
public event ColumnClickEventHandler ColumnClick;
|
public event System.Windows.Forms.ColumnClickEventHandler ColumnClick;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Occurs whenever the 'SelectedItems' property for this control changes
|
/// Occurs whenever the 'SelectedItems' property for this control changes
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[Category("Behavior")]
|
[Category("Behavior")]
|
||||||
public event SelectedIndexChangedHandler SelectedIndexChanged;
|
public event System.EventHandler SelectedIndexChanged;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Occurs whenever the mouse wheel is scrolled while the right mouse button is held
|
/// 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 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 delegate void RightMouseScrollEventHandler(object sender, MouseEventArgs e);
|
||||||
|
|
||||||
public class CellEventArgs
|
public class CellEventArgs
|
||||||
|
|
|
@ -102,8 +102,8 @@
|
||||||
this.InputView.Text = "inputRoll1";
|
this.InputView.Text = "inputRoll1";
|
||||||
this.InputView.VirtualMode = false;
|
this.InputView.VirtualMode = false;
|
||||||
this.InputView.PointedCellChanged += new BizHawk.Client.EmuHawk.InputRoll.CellChangeEventHandler(this.InputView_PointedCellChanged);
|
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.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.InputView_ColumnClick);
|
||||||
this.InputView.SelectedIndexChanged += new BizHawk.Client.EmuHawk.InputRoll.SelectedIndexChangedHandler(this.InputView_SelectedIndexChanged);
|
this.InputView.SelectedIndexChanged += new System.EventHandler(this.InputView_SelectedIndexChanged);
|
||||||
//
|
//
|
||||||
// OutputLabel
|
// OutputLabel
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in New Issue