mirror of
https://gitlab.com/cleanflash/installer.git
synced 2026-08-13 10:51:37 +08:00
Initial commit
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user