Files

22 lines
559 B
XML
Raw Permalink Normal View History

2016-01-15 16:48:47 +01:00
<Page
x:Class="PointerButton.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:PointerButton">
2016-01-18 14:19:48 +01:00
<Grid Background="#202021">
2016-01-15 16:48:47 +01:00
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
<TextBlock Text="Default Button" />
<Button Content="hover me" />
<TextBlock Text="Pointer Button" Margin="0 10 0 0" />
<local:PointerButton Content="hover me" />
</StackPanel>
</Grid>
</Page>