joar, wird wohl das Einfachste sein, denn z.B. ist irgendwer auf die seltendämliche Idee gekommen ClicksDisabled nur Protected sein zu lassen
Delphi-Quellcode:
THackedCheckBox = class(TCheckBox)
public
property ClicksDisabled;
end;
THackedCheckBox(YourCheckBox).ClicksDisabled := True;
YourCheckBox.Checked := ...;
THackedCheckBox(YourCheckBox).ClicksDisabled := False;