TCustomCheckBox.AllowGray defaults to false.

git-svn-id: trunk@6540 -
This commit is contained in:
vincents 2005-01-11 13:25:23 +00:00
parent 70b4d7f37a
commit 73ba16e348
2 changed files with 8 additions and 2 deletions

View File

@ -101,7 +101,7 @@ begin
Inherited Create(TheOwner);
fCompStyle := csCheckbox;
FState := cbUnchecked;
FAllowGrayed := True;
FAllowGrayed := false;
TabStop := true;
SetInitialBounds(0,0,90,23);
AutoSize:=true;
@ -227,6 +227,9 @@ end;
{
$Log$
Revision 1.29 2005/01/11 13:25:23 vincents
TCustomCheckBox.AllowGray defaults to false.
Revision 1.28 2005/01/01 19:36:40 mattias
fixed loading TRadioButton.Checked

View File

@ -857,7 +857,7 @@ type
constructor Create(TheOwner: TComponent); override;
public
property AutoSize default true;
property AllowGrayed: Boolean read FAllowGrayed write FAllowGrayed default True;
property AllowGrayed: Boolean read FAllowGrayed write FAllowGrayed default false;
property State: TCheckBoxState read GetState write SetState;
property TabStop default true;
property UseOnChange;
@ -1216,6 +1216,9 @@ end.
{ =============================================================================
$Log$
Revision 1.182 2005/01/11 13:25:23 vincents
TCustomCheckBox.AllowGray defaults to false.
Revision 1.181 2005/01/08 22:13:21 vincents
TLabel.ShowAccelChar default value is True