[NUI] Add TabView and related classes
authorJaeun Choi <jaeun12.choi@samsung.com>
Tue, 6 Oct 2020 02:33:12 +0000 (11:33 +0900)
committerdongsug-song <35130733+dongsug-song@users.noreply.github.com>
Tue, 15 Dec 2020 06:33:59 +0000 (15:33 +0900)
commite2b1252564d3fc966e195a6af9dcedfe0486be3b
treecac6842bb0d5f5ab0845e6ad9de890a38a6418b0
parent63d696a2422706e325e41fdef29dc3c4e7110b5f
[NUI] Add TabView and related classes

TabView and its related classes, TabBar, TabContent, TabButton and
TabButtonGroup, are added.

TabView consists of TabBar and TabContent.

TabBar consists of a list of TabButton.
TabContent consists of a list of View.

TabView.AddTab() adds TabButton and View to TabBar and TabContent in
TabView.
TabView.RemoveTab() removes TabButton and View from TabBar and
TabContent in TabView.
src/Tizen.NUI.Components/Controls/TabBar.cs [new file with mode: 0755]
src/Tizen.NUI.Components/Controls/TabButton.cs [new file with mode: 0755]
src/Tizen.NUI.Components/Controls/TabButtonGroup.cs [new file with mode: 0755]
src/Tizen.NUI.Components/Controls/TabContent.cs [new file with mode: 0755]
src/Tizen.NUI.Components/Controls/TabView.cs [new file with mode: 0755]
test/Tizen.NUI.Samples/Tizen.NUI.Samples/Samples/TabViewSample.cs [new file with mode: 0644]