void __fastcall TForm1::RadioGroup1Click(TObject *Sender)
{
Label1->Caption = RadioGroup1->Items->Strings[RadioGroup1->ItemIndex];
}
RadioGroup
Как передать имя выбранного Items, например в Edit?
Цитата:
Originally posted by ADanilov
У меня есть элемент RadioGroup и на нем есть три Items.
Как передать имя выбранного Items, например в Edit?
У меня есть элемент RadioGroup и на нем есть три Items.
Как передать имя выбранного Items, например в Edit?
Lists the radio buttons in the radio group.
__property Classes::TStrings* Items = {read=FItems, write=SetItems};
Description
Items holds a TStrings object that lists the captions of the radio buttons in the group. In TCustomRadioGroup descendants, where this property is published, radio buttons can be added or removed by editing the Items list from the Object Inspector.
Note: The items in a radio-group object are special instances of TRadioButton generated by TCustomRadioGroup. Independently created TRadioButton instances cannot be included in a radio group.
Т.Е.
Код: