mirror of
https://gitlab.com/cleanflash/installer.git
synced 2026-08-13 10:51:37 +08:00
12 lines
289 B
C#
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);
|
|
}
|
|
}
|
|
}
|