22 lines
559 B
XML
22 lines
559 B
XML
<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">
|
|
|
|
<Grid Background="#202021">
|
|
|
|
<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>
|