[NUI][TCSACR-418] Add AppBar class 01/258301/3
authorJaehyun Cho <jae_hyun.cho@samsung.com>
Thu, 13 May 2021 06:54:48 +0000 (15:54 +0900)
committerJaehyun Cho <jae_hyun.cho@samsung.com>
Fri, 14 May 2021 06:19:32 +0000 (15:19 +0900)
commit5e0e947fd509577d2ef6b5ae3ac82157660ac7db
tree4e9e57dce7bcec45967949865308305c250a384b
parentae0fb86561cd62c8cc39016039f1b2ea71378e69
[NUI][TCSACR-418] Add AppBar class

File - src/Tizen.NUI.Components/Controls/Navigation/AppBar.cs

  - Class
    [Add] public class AppBar

  - Constructor
    [Add] public AppBar()
    [Add] public AppBar(string style)
    [Add] public AppBar(AppBarStyle appBarStyle)

  - Property
    [Add] public bool AutoNavigationContent { get; set; }
    [Add] public string Title { get; set; }
    [Add] public IEnumerable<View> Actions { get; set; }
    [Add] public View NavigationContent { get; set; }
    [Add] public View TitleContent { get; set; }
    [Add] public View ActionContent { get; set; }

   - Method
    [Add] public override void ApplyStyle(ViewStyle viewStyle)

File - src/Tizen.NUI.Components/Controls/Navigation/ContentPage.cs

  - Property
    [Add] public AppBar AppBar { get; set; }

File - src/Tizen.NUI.Components/Style/Navigation/AppBarStyle.cs

  - Class
    [Add] public class AppBarStyle

  - Constructor
    [Add] public AppBarStyle()
    [Add] public AppBarStyle(AppBarStyle appBarStyle)

  - Property
    [Add] public ButtonStyle BackButton { get; set; }
    [Add] public TextLabelStyle TitleTextLabel { get; set; }
    [Add] public ViewStyle ActionView { get; set; }
    [Add] public ButtonStyle ActionButton { get; set; }

   - Method
    [Add] public override void CopyFrom(BindableObject bindableObject)

Change-Id: I96c5a3e9110dae3c6d69cc504d2f42567c318b6e
tct-suite-vs/Tizen.NUI.Components.Tests/testcase/TSAppBar.cs [new file with mode: 0755]
tct-suite-vs/Tizen.NUI.Components.Tests/testcase/TSAppBarStyle.cs [new file with mode: 0755]
tct-suite-vs/Tizen.NUI.Components.Tests/testcase/TSContentPage.cs [new file with mode: 0755]