delphi 中的RadioGroup
RadioGroup有四个RadioButton我想获取选中的RadioButton的名字问得比较菜还请大家赐教我在RadioGroup的Items中添加的4个Radio...
RadioGroup 有四个RadioButton 我想获取 选中的RadioButton 的 名字
问得比较菜 还请大家赐教
我在RadioGroup 的 Items中添加的 4个RadioButton 分别为 1、2、3、4 即 当我选中 其中一个 RadioButton时 返回的是 RadioButton的内容 即1、2、3、4 请问有没有直接的属性 或者方法 可以直接实现 展开
问得比较菜 还请大家赐教
我在RadioGroup 的 Items中添加的 4个RadioButton 分别为 1、2、3、4 即 当我选中 其中一个 RadioButton时 返回的是 RadioButton的内容 即1、2、3、4 请问有没有直接的属性 或者方法 可以直接实现 展开
4个回答
展开全部
是不难的,可以这样。你是不是在RadioGroup上加了4个RadioButton?如果是如下
在其中的一个RadioButton的onclick事件写如下代码
showmessage((Sender as TRadioButton).Name);
然后,其它的RadioButton事件也连到这个按钮上。就是在事件中,找到onclick,在列表中选择你刚刚写代码的RadioButton中。
就可以了。你选哪一个,显示的就是这个RadioButton按钮的名字。
在其中的一个RadioButton的onclick事件写如下代码
showmessage((Sender as TRadioButton).Name);
然后,其它的RadioButton事件也连到这个按钮上。就是在事件中,找到onclick,在列表中选择你刚刚写代码的RadioButton中。
就可以了。你选哪一个,显示的就是这个RadioButton按钮的名字。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
procedure TForm1.RadioGroup1Click(Sender: TObject);
begin
edit1.Text:=inttostr(RadioGroup1.ItemIndex);//这是索引
edit2.Text:=RadioGroup1.Items[RadioGroup1.ItemIndex];//这是内容
end;
begin
edit1.Text:=inttostr(RadioGroup1.ItemIndex);//这是索引
edit2.Text:=RadioGroup1.Items[RadioGroup1.ItemIndex];//这是内容
end;
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
procedure TForm1.RadioGroup1Click(Sender: TObject);
begin
if RadioGroup1.Buttons[RadioGroup1.ItemIndex].Checked then
ShowMessage(RadioGroup1.Buttons[RadioGroup1.ItemIndex].Caption);
end;
begin
if RadioGroup1.Buttons[RadioGroup1.ItemIndex].Checked then
ShowMessage(RadioGroup1.Buttons[RadioGroup1.ItemIndex].Caption);
end;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
没有直接的属性,只能传值。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |