Advertisement
Guest User

Untitled

a guest
Jan 18th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.74 KB | None | 0 0
  1. <Page x:Class="DefaultBindMode.MainPage"
  2.      xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3.      xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4.      xmlns:local="using:DefaultBindMode"
  5.      xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6.      xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  7.      mc:Ignorable="d">
  8.  
  9.     <Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
  10.         <StackPanel HorizontalAlignment="Center"
  11.                    VerticalAlignment="Center">
  12.             <TextBlock Text="{x:Bind Vm.Count}" />
  13.             <Button Content="+"
  14.                    Command="{x:Bind Vm.IncreaseCommand}" />
  15.         </StackPanel>
  16.     </Grid>
  17. </Page>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement