TabViewItem
Represents an individual tab in the RadTabView control. Each tab has a header and an associated content displayed on selection.
Definition
Namespace:Telerik.Maui.Controls
Assembly:Telerik.Maui.Controls.dll
Syntax:
public class TabViewItem : BindableObject
Inheritance: objectTabViewItem
Constructors
public TabViewItem()
Fields
AutomationIdProperty
BindableProperty
Identifies the AutomationId property.
public static readonly BindableProperty AutomationIdProperty
ContentProperty
BindableProperty
Identifies the Content property.
public static readonly BindableProperty ContentProperty
ContentTemplateProperty
BindableProperty
Identifies the ContentTemplate property.
public static readonly BindableProperty ContentTemplateProperty
HeaderTextProperty
BindableProperty
Identifies the HeaderText property.
public static readonly BindableProperty HeaderTextProperty
ImageSourceProperty
BindableProperty
Identifies the ImageSource property.
public static readonly BindableProperty ImageSourceProperty
IsEnabledProperty
BindableProperty
Identifies the IsEnabled property.
public static readonly BindableProperty IsEnabledProperty
IsSelectedProperty
BindableProperty
Identifies the IsSelected property.
public static readonly BindableProperty IsSelectedProperty
IsVisibleProperty
BindableProperty
Identifies the IsVisible property.
public static readonly BindableProperty IsVisibleProperty
Properties
Gets or sets the automation ID associated with the current tab.
public string AutomationId { get; set; }
Content
View
Gets or sets the content to be displayed when the current tab is selected.
public View Content { get; set; }
ContentTemplate
DataTemplate
Gets or sets the content template to be displayed (when the Content is not set) when the current tab is selected.
public DataTemplate ContentTemplate { get; set; }
Gets or sets the text to be displayed in the header item of the tab. For more information see the TabViewHeaderItem control.
public string HeaderText { get; set; }
ImageSource
ImageSource
Gets or sets the ImageSource of the to be displayed in the header item of the tab. For more information see the TabViewHeaderItem control.
public ImageSource ImageSource { get; set; }
Gets or sets a value indicating whether the current tab is enabled.
public bool IsEnabled { get; set; }
Gets or sets a value indicating whether the current tab is selected.
public bool IsSelected { get; set; }