Class TabBar
Definition
- Namespace:
- Tizen.NUI.Components
- Assembly:
- Tizen.NUI.Components.dll
TabBar is a class which contains a set of TabButtons and has one of them selected.
public class TabBar : Control, INotifyPropertyChanged, IDisposable
- Inheritance
-
objectTizen.NUI.Binding.ElementTizen.NUI.Components.ControlTabBar
- Implements
-
System.ComponentModel.INotifyPropertyChangedSystem.IDisposable
Constructors
View SourceTabBar()
Creates a new instance of TabBar.
Declaration
public TabBar()
Properties
View SourceTabButtonCount
Gets the count of tab buttons.
Declaration
public int TabButtonCount { get; }
Property Value
Type | Description |
---|---|
int |
Methods
View SourceGetTabButton(int)
Gets the tab button at the specified index of TabBar. The indices of tab buttons in TabBar are basically the order of adding to TabBar by AddTab(TabButton, View). So a tab button's index in TabBar can be changed whenever AddTab(TabButton, View) or RemoveTab(int) is called.
Declaration
public TabButton GetTabButton(int index)
Parameters
Type | Name | Description |
---|---|---|
int | index | The index of tab button in TabBar where the specified tab button exists. |
Returns
Type | Description |
---|---|
TabButton |
Exceptions
Type | Condition |
---|---|
System.ArgumentOutOfRangeException | Thrown when the index is less than 0, or greater than or equal to the number of tab buttons. |
Implements
System.ComponentModel.INotifyPropertyChanged
System.IDisposable