Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- android architecture component
- kodility
- Kotlin
- Flutter TextField
- 코틀린
- 알고리즘
- NDK
- Android P
- mfc
- android push
- flutter firestore
- Django REST Android
- C++
- 안드로이드
- Rxjava2
- 안드로이드 구글맵
- Python
- 프로그래머스
- Java
- dart
- RxJava
- Android
- livedata
- C
- RxAndroid
- C/C++
- Django REST framework
- UWP
- Django REST
- FLUTTER
Archives
- Today
- Total
개발하는 두더지
[C/C++/C#/UWP] UWP Command Bar 구현하기 본문
CommandBar 구현하기
[C/C++/C#/UWP] UWP 네비게이션 구현하기
http://duzi077.tistory.com/admin/entry/post/?id=92
이어서 코드를 추가하여 CommandBar를 만들어보겠습니다.
<PC>
<Mobile>
Command Bar를 생성하는 방식 2가지
1. VS 메뉴 활용하기
xaml 파일 -> 문서개요 클릭 -> BottonAppBar 오른쪽 버튼 클릭 -> CommandBar 추가
CommandBar 오른쪽 버튼 클릭 -> AppBarButton 추가
2. xaml 편집기에 직접 코딩
1 2 3 4 5 6 7 8 9 10 11 12 13 | <Page .. mc:Ignorable="d"> <Page.BottomAppBar> <CommandBar> <AppBarButton Label="Accept" Icon="Accept"/> <AppBarButton Label="Cancel" Icon="Cancel"/> </CommandBar> </Page.BottomAppBar> <Grid ... /> </Page> | cs |
CommandBar & Secondary CommandBar 추가하기
MainPage.xaml
1 2 3 4 5 6 7 8 9 10 11 12 | <Page.BottomAppBar> <CommandBar ClosedDisplayMode="Minimal"> <CommandBar.Content> <Grid/> </CommandBar.Content> <CommandBar.SecondaryCommands> <AppBarButton x:Name="aboutCommandBar" Tag="About" Label="About" Click="AppBarButton_Click"/> </CommandBar.SecondaryCommands> <AppBarButton x:Name="contactCommandBar" Tag="Contact" Label="Contact" Icon="Contact" Click="AppBarButton_Click"/> <AppBarButton x:Name="favoriteCommandBar" Tag="Favorite" Label="Favorite" Icon="Favorite" Click="AppBarButton_Click"/> </CommandBar> </Page.BottomAppBar> | cs |
CommandBar 이벤트 추가하기
MainPage.xaml.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | private void AppBarButton_Click(object sender, RoutedEventArgs e) { switch((string)((AppBarButton)sender).Tag) { case "About": this.Frame.Navigate(typeof(Aboutpage)); break; case "Contact": this.Frame.Navigate(typeof(Contact)); break; case "Favorite": this.Frame.Navigate(typeof(FavoritePage)); break; default: break; } | cs |
빈 페이지 3개 ( Aboutpage , Contact , FavoritePage ) 를 만들고,
페이지 정보를 알려주는 TextBlock으로 구성합니다.
FavoritePage.xaml
1 2 3 | <Grid Background="DarkViolet"> <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" Text="Favorite Page" FontSize="30"/> </Grid> | cs |
'C,C++' 카테고리의 다른 글
[C/C++/C#/UWP] XAML파일을 CS 코드로 대체하기 (0) | 2017.01.25 |
---|---|
[C/C++/C#/UWP] 다양한 텍스트 처리 방법 (0) | 2017.01.25 |
[C/C++/C#/UWP] UWP 네비게이션 구현하기 (1) | 2016.10.25 |
[C/C++/C#/UWP] UWP SplashScreen (스플래쉬스크린) 구현하기 (1) | 2016.10.24 |
[C/C++/C#/UWP] UWP Customized SplitView 코드 - 2 (0) | 2016.10.21 |
Comments