Add base interface for *CheckBoxEx and *RadioButtonEx controls

This commit is contained in:
YoshiRulz 2020-12-21 16:58:49 +10:00
parent 56b158e72a
commit 9168b59382
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
3 changed files with 9 additions and 2 deletions

View File

@ -3,7 +3,7 @@ using System.Windows.Forms;
namespace BizHawk.WinForms.Controls
{
public abstract class CheckBoxExBase : CheckBox
public abstract class CheckBoxExBase : CheckBox, ICheckBoxOrRadioEx
{
[Browsable(false)]
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]

View File

@ -0,0 +1,7 @@
namespace BizHawk.WinForms.Controls
{
public interface ICheckBoxOrRadioEx
{
bool Checked { get; set; }
}
}

View File

@ -3,7 +3,7 @@ using System.Windows.Forms;
namespace BizHawk.WinForms.Controls
{
public abstract class RadioButtonExBase : RadioButton, ITrackedRadioButton
public abstract class RadioButtonExBase : RadioButton, ICheckBoxOrRadioEx, ITrackedRadioButton
{
/// <remarks>use to prevent recursion</remarks>
protected bool CheckedChangedCausedByTracker { get; private set; }