You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
CleanFlashInstaller/CleanFlashCommon/ImageCheckBox.cs

12 lines
289 B
C#

using System;
using System.Windows.Forms;
namespace CleanFlashCommon {
public partial class ImageCheckBox : CheckBox {
protected override void OnCheckedChanged(EventArgs e) {
ImageIndex = Checked ? 1 : 0;
base.OnCheckedChanged(e);
}
}
}