本文介绍了单选按钮组XAML的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有六个单选按钮在XAML,我想创建两个组。如此看来,WPF没有单选按钮组元素,所以我怎么能这样做呢?

I have six radio buttons in XAML, and I would like to create two groups. It seems that WPF has no radiobutton group element, so how can I do this?

推荐答案

您必须指定一组名。元素

You have to specify a GroupName for the element.

 <RadioButton GroupName="Group1"/>

这篇关于单选按钮组XAML的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-15 06:01