RadioButtons.Header 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
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
属性值
组标头的内容。 默认为 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
包含图标和文本的复杂标头的组。
<!-- 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>
注解
有关详细信息、设计指南和代码示例,请参阅 单选按钮。
通常对标题使用字符串,该字符串显示为单选按钮组上方的文本标签。 还可以使用其他对象,而不是字符串。
可以使用 HeaderTemplate 属性为标头设置数据模板。 如果设置了该 HeaderTemplate
属性,则用于标头,并忽略该 Header
属性。