TabView.TabItemTemplate Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the DataTemplate used to display each item.
This documentation applies to WinUI 2 for UWP (for WinUI in the Windows App SDK, see the Windows App SDK namespaces).
DataTemplate TabItemTemplate();
void TabItemTemplate(DataTemplate value);
public DataTemplate TabItemTemplate { get; set; }
Public Property TabItemTemplate As DataTemplate
Property Value
Examples
<TabView TabItemsSource="{x:Bind myDatas, Mode=OneWay}">
<TabView.TabItemTemplate>
<DataTemplate x:DataType="local1:MyData">
<TabViewItem Header="{x:Bind DataHeader}" IconSource="{x:Bind DataIconSource}" Content="{x:Bind DataContent}" />
</DataTemplate>
</TabView.TabItemTemplate>
</TabView>
Remarks
Use TabItemTemplate to customize the look of each generated TabViewItem when using the TabItemsSource as the data source for the tabs.