BizHawk/BizHawk.Client.EmuHawk/tools/Lua/LuaButton.cs

21 lines
392 B
C#

using System;
using System.Windows.Forms;
namespace BizHawk.Client.EmuHawk
{
class LuaButton : Button
{
private void DoLuaClick(object sender, EventArgs e)
{
LuaWinform parent = Parent as LuaWinform;
if (parent != null) parent.DoLuaEvent(Handle);
}
protected override void OnClick(EventArgs e)
{
DoLuaClick(this, e);
base.OnClick(e);
}
}
}