■ AppBarToggleButton 엘리먼트의 Icon/Label/Content/IsThreeState 속성을 사용하는 방법을 보여준다.
▶ 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 |
<?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"> <AppBarToggleButton Name="appBarToggleButton1" IsTabStop="False" Icon="Shuffle" Label="SymbolIcon" /> <TextBlock Name="textBlock1" VerticalAlignment="Center" Margin="10 0 0 0" /> </StackPanel> <StackPanel Margin="0 10 0 0" Orientation="Horizontal"> <AppBarToggleButton Name="appBarToggleButton2" IsTabStop="False" Label="BitmapIcon"> <AppBarToggleButton.Icon> <BitmapIcon UriSource="ms-appx:///IMAGE/Slices.png" /> </AppBarToggleButton.Icon> </AppBarToggleButton> <TextBlock Name="textBlock2" VerticalAlignment="Center" Margin="10 0 0 0" /> </StackPanel> <StackPanel Margin="0 10 0 0" Orientation="Horizontal"> <AppBarToggleButton Name="appBarToggleButton3" IsTabStop="False" Label="FontIcon"> <AppBarToggleButton.Icon> <FontIcon FontFamily="Candara" Glyph="Σ" /> </AppBarToggleButton.Icon> </AppBarToggleButton> <TextBlock Name="textBlock3" VerticalAlignment="Center" Margin="10 0 0 0" /> </StackPanel> <StackPanel Margin="0 10 0 0" Orientation="Horizontal"> <AppBarToggleButton Name="appBarToggleButton4" IsTabStop="False" Label="PathIcon" IsThreeState="True"> <AppBarToggleButton.Content> <Viewbox> <PathIcon Data="F 1 M 20 20 L 24 10 L 24 24 L 5 24" /> </Viewbox> </AppBarToggleButton.Content> </AppBarToggleButton> <TextBlock Name="textBlock4" 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 |
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.appBarToggleButton1.Click += appBarToggleButton_Click; this.appBarToggleButton2.Click += appBarToggleButton_Click; this.appBarToggleButton3.Click += appBarToggleButton_Click; this.appBarToggleButton4.Click += appBarToggleButton_Click; } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Private #region 앱바 토글 버튼 클릭시 처리하기 - appBarToggleButton_Click(sender, e) /// <summary> /// 앱바 토글 버튼 클릭시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void appBarToggleButton_Click(object sender, RoutedEventArgs e) { if(sender is AppBarToggleButton button) { string name = button.Name; switch(name) { case "appBarToggleButton1" : this.textBlock1.Text = "IsChecked = " + button.IsChecked.ToString(); break; case "appBarToggleButton2" : this.textBlock2.Text = "IsChecked = " + button.IsChecked.ToString(); break; case "appBarToggleButton3" : this.textBlock3.Text = "IsChecked = " + button.IsChecked.ToString(); break; case "appBarToggleButton4" : this.textBlock4.Text = "IsChecked = " + button.IsChecked.ToString(); break; } } } #endregion } } |