TCheckListBoxCreate v2
TCheckListBoxCreate v2
Code:
- CheckListBoxAddCheckBox(FCheckListBox, 'AddCheckBox', '', 0, False, False, False, True, nil);
- CheckListBoxAddGroup(FCheckListBox, 'AddGroup', '', 4, nil);
- CheckListBoxAddRadioButton(FCheckListBox, 'AddRadioButton (1)', '', 1, False, True, nil);
- CheckListBoxAddRadioButton(FCheckListBox, 'AddRadioButton (2)', '', 1, False, True, nil);
- CheckListBoxAddCheckBoxEx(FCheckListBox, 'AddCheckBoxEx', '', 0, False, False, False, True, nil, True);
- CheckListBoxAddGroupEx(FCheckListBox, 'AddGroupEx', '', 4, nil, True);
- CheckListBoxAddRadioButtonEx(FCheckListBox, 'AddRadioButtonEx (1)', '', 1, False, True, nil, True);
- CheckListBoxAddRadioButtonEx(FCheckListBox, 'AddRadioButtonEx (2)', '', 1, False, True, nil, True);
- CheckListBoxCheckItem(FCheckListBox, 1, coUncheck);
- CheckListBoxCheckItem(FCheckListBox, 3, coCheck);
- CheckListBoxCheckItem(FCheckListBox, 6, coCheckWithChildren);
Code:
- CheckListBoxBtnFromBitmap(FCheckListBox, BtnImage.Bitmap);
- CheckListBoxBtnFromFile(FCheckListBox,'BtnImage.bmp');
- CheckListBoxBGFromBitmap(FCheckListBox, BGImage.Bitmap, CheckListBoxGetLeft(FCheckListBox)-20, CheckListBoxGetTop(FCheckListBox)-20);
- CheckListBoxBGFromFile(FCheckListBox, 'BGImage.bmp', CheckListBoxGetLeft(FCheckListBox)-20, CheckListBoxGetTop(FCheckListBox)-20);
Last edited by DelphiBuilder; 24-12-2022 at 13:19.
|