■ InfoBar 엘리먼트의 IsIconVisible/IsClosable 속성을 사용하는 방법을 보여준다.
▶ 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 |
<?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}" FontFamily="나눔고딕코딩" FontSize="16"> <Grid Margin="10"> <Grid.ColumnDefinitions> <ColumnDefinition Width="*" /> <ColumnDefinition Width="10" /> <ColumnDefinition Width="Auto" /> </Grid.ColumnDefinitions> <InfoBar Name="infoBar" Grid.Column="0" HorizontalAlignment="Center" VerticalAlignment="Center" IsOpen="True" IsIconVisible="True" IsClosable="True" Title="Title" Message="Essential app message for your users to be informed of, acknowledge, or take action on." /> <StackPanel Grid.Column="2" HorizontalAlignment="Center" VerticalAlignment="Center" Width="150"> <CheckBox Name="IsOpenCheckBox3" Content="Is Open" IsChecked="{x:Bind infoBar.IsOpen, Mode=TwoWay}" /> <CheckBox Name="IsIconVisibleCheckBox" Content="Is Icon Visible" IsChecked="{x:Bind infoBar.IsIconVisible, Mode=TwoWay}" /> <CheckBox Name="IsClosableCheckBox" Content="Is Closable" IsChecked="{x:Bind infoBar.IsClosable, Mode=TwoWay}" /> </StackPanel> </Grid> </Page> |