RadioButton.GroupName 属性

定义

获取或设置指定哪些 RadioButton 控件互相排斥的名称。

public:
 property System::String ^ GroupName { System::String ^ get(); void set(System::String ^ value); };
[System.Windows.Localizability(System.Windows.LocalizationCategory.NeverLocalize)]
public string GroupName { get; set; }
[<System.Windows.Localizability(System.Windows.LocalizationCategory.NeverLocalize)>]
member this.GroupName : string with get, set
Public Property GroupName As String

属性值

指定哪些 RadioButton 控件互相排斥的名称。 默认值为一个空字符串。

属性

示例

以下代码示例创建两个单独的 RadioButton 组: colorgrpnumgrp。 用户可以在每个组中选择一个 RadioButton

<StackPanel>
    <RadioButton GroupName="colorgrp">Red</RadioButton>
    <RadioButton GroupName="colorgrp">Blue</RadioButton>
    <RadioButton GroupName="numgrp">1</RadioButton>
    <RadioButton GroupName="numgrp">2</RadioButton>
</StackPanel>

注解

如果两个或多个 RadioButton 控件具有相同 GroupName,则用户一次只能选择一 RadioButton 个控件。

依赖项属性信息

标识符字段 GroupNameProperty
元数据属性设置为 true

适用于