Class AppBar

    Definition

    Namespace:
    Tizen.NUI.Components
    Assembly:
    Tizen.NUI.Components.dll

    The AppBar class is a class which shows title text and provides navigation and action functions on Page.

    public class AppBar : Control, INotifyPropertyChanged, IDisposable
    Inheritance
    object
    BindableObject
    Tizen.NUI.Binding.Element
    BaseHandle
    Animatable
    Container
    View
    ViewWrapper
    CustomView
    VisualView
    Tizen.NUI.Components.Control
    AppBar
    Implements
    System.ComponentModel.INotifyPropertyChanged
    System.IDisposable

    Constructors

    View Source

    AppBar()

    Creates a new instance of AppBar.

    Declaration
    public AppBar()
    View Source

    AppBar(string)

    Creates a new instance of AppBar.

    Declaration
    public AppBar(string style)
    Parameters
    Type Name Description
    string style

    Creates AppBar by special style defined in UX.

    View Source

    AppBar(AppBarStyle)

    Creates a new instance of AppBar.

    Declaration
    public AppBar(AppBarStyle appBarStyle)
    Parameters
    Type Name Description
    AppBarStyle appBarStyle

    Creates AppBar by style customized by user.

    Properties

    View Source

    ActionContent

    Action content of AppBar. ActionContent is added as a child of AppBar automatically. Action content contains action views and action buttons by Actions. The Action and ActionButton styles of AppBarStyle are applied to actions only by setting Actions.

    Declaration
    public View ActionContent { get; set; }
    Property Value
    Type Description
    View
    View Source

    Actions

    Action views of AppBar. Action views are added to ActionContent of AppBar. If action views and action buttons are set to Actions, then proper style look for action views and action buttons are automatically applied to action views and action buttons. e.g. size, button icon color, etc. If you do not want to apply framework's style look for action views and action buttons, then please use ActionContent.Add(actionView) instead of setting Actions.

    Declaration
    public IEnumerable<View> Actions { get; set; }
    Property Value
    Type Description
    System.Collections.Generic.IEnumerable<T><View>
    View Source

    AutoNavigationContent

    Flag to indicate if default navigation content is automatically set or not. The default value is true. If AutoNavigationContent is set to be true and NavigationContent is not set, then default navigation content is automatically displayed. If default navigation content is clicked, the back navigation proceeds.

    Declaration
    public bool AutoNavigationContent { get; set; }
    Property Value
    Type Description
    bool
    View Source

    NavigationContent

    Navigation content of AppBar. NavigationContent is added as a child of AppBar automatically. If AutoNavigationContent is set to be true and NavigationContent is not set, then default navigation content is automatically displayed.

    Declaration
    public View NavigationContent { get; set; }
    Property Value
    Type Description
    View
    View Source

    Title

    Title text of AppBar. Title sets title text to the default title content. If TitleContent is not TextLabel, then Title does not set title text of the TitleContent.

    Declaration
    public string Title { get; set; }
    Property Value
    Type Description
    string
    View Source

    TitleContent

    Title content of AppBar. TitleContent is added as a child of AppBar automatically. If TitleContent is not TextLabel, then Title does not set title text of the TitleContent.

    Declaration
    public View TitleContent { get; set; }
    Property Value
    Type Description
    View

    Methods

    View Source

    ApplyStyle(ViewStyle)

    Applies style to AppBar.

    Declaration
    public override void ApplyStyle(ViewStyle viewStyle)
    Parameters
    Type Name Description
    ViewStyle viewStyle

    The style to apply.

    Overrides
    View.ApplyStyle(ViewStyle)

    Implements

    System.ComponentModel.INotifyPropertyChanged
    System.IDisposable
    • View Source
    Back to top Copyright © 2016-2024 Samsung
    Generated by DocFX