■ AppBarButton 엘리먼트의 Icon/Content/KeyboardAccelerators 속성을 사용하는 방법을 보여준다.
▶ MainPage.xaml
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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 |
<?xml version="1.0" encoding="utf-8"?> <Page x:Class="TestProject.MainPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"> <StackPanel VerticalAlignment="Center" Width="400"> <StackPanel Orientation="Horizontal"> <AppBarButton Name="appBarButton1" Icon="Like" Label="SymbolIcon" /> <TextBlock Name="textBlock1" VerticalAlignment="Center" Margin="10 0 0 0" /> </StackPanel> <StackPanel Margin="0 10 0 0" Orientation="Horizontal"> <AppBarButton Name="appBarButton2" Label="BitmapIcon"> <AppBarButton.Icon> <BitmapIcon UriSource="ms-appx:///IMAGE/Slices.png" /> </AppBarButton.Icon> </AppBarButton> <TextBlock Name="textBlock2" VerticalAlignment="Center" Margin="10 0 0 0" /> </StackPanel> <StackPanel Margin="0 10 0 0" Orientation="Horizontal"> <AppBarButton Name="appBarButton3" Label="FontIcon"> <AppBarButton.Icon> <FontIcon FontFamily="Candara" Glyph="Σ" /> </AppBarButton.Icon> </AppBarButton> <TextBlock Name="textBlock3" VerticalAlignment="Center" Margin="10 0 0 0" /> </StackPanel> <StackPanel Margin="0 10 0 0" Orientation="Horizontal"> <AppBarButton Name="appBarButton4" Label="PathIcon"> <AppBarButton.Content> <Viewbox Stretch="Uniform"> <PathIcon Data="F 1 M 20 20 L 24 10 L 24 24 L 5 24" /> </Viewbox> </AppBarButton.Content> </AppBarButton> <TextBlock Name="textBlock4" VerticalAlignment="Center" Margin="10 0 0 0" /> </StackPanel> <StackPanel Margin="0 10 0 0" Orientation="Horizontal"> <AppBarButton Name="appBarButton5" Icon="Save" Label="Save"> <AppBarButton.KeyboardAccelerators> <KeyboardAccelerator Modifiers="Control" Key="S"/> </AppBarButton.KeyboardAccelerators> </AppBarButton> <TextBlock Name="textBlock5" VerticalAlignment="Center" Margin="10 0 0 0" /> </StackPanel> </StackPanel> </Page> |
▶ MainPage.xaml.cs
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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
using Microsoft.UI.Xaml; using Microsoft.UI.Xaml.Controls; namespace TestProject { /// <summary> /// 메인 페이지 /// </summary> public sealed partial class MainPage : Page { //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - MainPage() /// <summary> /// 생성자 /// </summary> public MainPage() { InitializeComponent(); this.appBarButton1.Click += appBarButton_Click; this.appBarButton2.Click += appBarButton_Click; this.appBarButton3.Click += appBarButton_Click; this.appBarButton4.Click += appBarButton_Click; this.appBarButton5.Click += appBarButton_Click; } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Private #region 앱바 버튼 클릭시 처리하기 - appBarButton_Click(sender, e) /// <summary> /// 앱바 버튼 클릭시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void appBarButton_Click(object sender, RoutedEventArgs e) { if(sender is Button button) { string name = button.Name; switch(name) { case "appBarButton1" : this.textBlock1.Text = "You clicked : " + name; break; case "appBarButton2" : this.textBlock2.Text = "You clicked : " + name; break; case "appBarButton3" : this.textBlock3.Text = "You clicked : " + name; break; case "appBarButton4" : this.textBlock4.Text = "You clicked : " + name; break; case "appBarButton5" : this.textBlock5.Text = "You clicked : " + name; break; } } } #endregion } } |