1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| Page := CreateCustomPage(wpSelectDir, 'Type d''installation', 'Choisissez le poste à installer');
CheckListBox := TNewCheckListBox.Create(Page);
CheckListBox.Width := Page.SurfaceWidth;
CheckListBox.Height := ScaleY(97);
CheckListBox.MinItemHeight := WizardForm.TasksList.MinItemHeight;
CheckListBox.Flat := True;
CheckListBox.Parent := Page.Surface;
CheckListBox.ShowLines := False;
CheckListBox.WantTabs := True;
CheckListBox.BorderStyle := bsNone;
CheckListBox.ParentColor := True;
CheckListBox.AddRadioButton('Installation du poste ON AIR', '', 0, True, True, nil);
CheckListBox.AddRadioButton('Installation du poste STANDARD', '', 0, False, True, nil);
CheckListBox.AddRadioButton('Installation du poste GESTION', '', 0, False, True, nil); |
Partager