RadioButtons.Header 属性

定义

获取或设置组标头的内容。

本文档适用于 Windows 应用 SDKWinUI 的 WinUI 2 for UWP (,请参阅Windows 应用 SDK命名空间) 。

public:
 property Platform::Object ^ Header { Platform::Object ^ get(); void set(Platform::Object ^ value); };
IInspectable Header();

void Header(IInspectable value);
public object Header { get; set; }
Public Property Header As Object

属性值

Object

Platform::Object

IInspectable

组标头的内容。 默认为 null

示例

本示例显示一个 RadioButtons 组,其 Header 设置为“背景色”。

<!-- xmlns:muxc="using:Microsoft.UI.Xaml.Controls -->
<muxc:RadioButtons Header="Background color">
    <x:String>Red</x:String>
    <x:String>Green</x:String>
    <x:String>Blue</x:String>
</muxc:RadioButtons>

一个 RadioButtons 组,其标头设置为“背景色”

本示例显示包含一个 RadioButtons 包含图标和文本的复杂标头的组。

<!-- xmlns:muxc="using:Microsoft.UI.Xaml.Controls -->
<muxc:RadioButtons>
    <muxc:RadioButtons.Header>
        <StackPanel Orientation="Horizontal">
            <SymbolIcon Symbol="Highlight"/>
            <TextBlock Text="Highlight color" Margin="8,0,0,0"/>
        </StackPanel>
    </muxc:RadioButtons.Header>
    <x:String>Yellow</x:String>
    <x:String>Green</x:String>
    <x:String>Pink</x:String>
</muxc:RadioButtons>

一个 RadioButtons 组,其标头设置为“背景色”

注解

有关详细信息、设计指南和代码示例,请参阅 单选按钮

通常对标题使用字符串,该字符串显示为单选按钮组上方的文本标签。 还可以使用其他对象,而不是字符串。

可以使用 HeaderTemplate 属性为标头设置数据模板。 如果设置了该 HeaderTemplate 属性,则用于标头,并忽略该 Header 属性。

适用于

另请参阅