Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 718 Bytes

tabviewitem_iconsource.md

File metadata and controls

35 lines (26 loc) · 718 Bytes
-api-id -api-type
P:Microsoft.UI.Xaml.Controls.TabViewItem.IconSource
winrt property

Microsoft.UI.Xaml.Controls.TabViewItem.IconSource

-description

Gets or sets the value for the IconSource to be displayed within the tab.

-property-value

-remarks

-see-also

-examples

<TabView>
    <TabView.TabItems>
        <TabViewItem Header="Home" IsClosable="False">
            <TabViewItem.IconSource>
                <SymbolIconSource Symbol="Home" />
            </TabViewItem.IconSource>
            <!-- The content of the TabViewItem -->
        </TabViewItem>
    </TabView.TabItems>
</TabView>