3 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
4 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
5 xmlns:custom="clr-namespace:SDKSample;assembly=SDKSampleLibrary"
6 x:Class="SDKSample.RoutedEventCustomApp"
10 <Style TargetType="{x:Type custom:MyButtonSimple}">
11 <Setter Property="Height" Value="20"/>
12 <Setter Property="Width" Value="250"/>
13 <Setter Property="HorizontalAlignment" Value="Left"/>
14 <Setter Property="Background" Value="#808080"/>
17 <StackPanel Background="LightGray">
18 <custom:MyButtonSimple Name="mybtnsimple" Tap="TapHandler">Click to see Tap custom event work</custom:MyButtonSimple>