1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
object saisiecouleurrayondefaut: Tsaisiecouleurrayondefaut
Left = 200
Height = 137
Top = 108
Width = 222
BorderIcons = []
BorderStyle = bsDialog
Caption = 'Couleur par défaut'
ClientHeight = 137
ClientWidth = 222
Color = clAqua
OnCreate = FormCreate
OnShow = FormShow
LCLVersion = '0.9.29'
object RadioGroup1: TRadioGroup
Left = 16
Height = 121
Top = 8
Width = 113
AutoFill = True
Caption = 'Couleur'
ChildSizing.LeftRightSpacing = 6
ChildSizing.TopBottomSpacing = 6
ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
ChildSizing.EnlargeVertical = crsHomogenousChildResize
ChildSizing.ShrinkHorizontal = crsScaleChilds
ChildSizing.ShrinkVertical = crsScaleChilds
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 1
ClientHeight = 103
ClientWidth = 109
ItemIndex = 0
Items.Strings = (
'Rouge'
'Vert'
'Bleu'
'Blanc'
)
TabOrder = 0
end
object BitBtn1: TBitBtn
Left = 143
Height = 121
Top = 8
Width = 72
Caption = '&OK'
Default = True
Kind = bkOK
ModalResult = 1
OnClick = BitBtn1Click
TabOrder = 1
end
end
|