1 <Window x:Class="SDKSamples.Window1"
2 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4 xmlns:custom="clr-namespace:SDKSamples"
5 Title="gotfocusLostfocusEffectUsingEvent" Height="400" Width="450"
9 <Style TargetType="{x:Type Button}">
10 <Setter Property="Height" Value="20"/>
11 <Setter Property="Width" Value="250"/>
12 <Setter Property="HorizontalAlignment" Value="Left"/>
14 </StackPanel.Resources>
16 GotFocus="OnGotFocusHandler"
17 LostFocus="OnLostFocusHandler">Click Or Tab To Give Keyboard Focus</Button>
19 GotFocus="OnGotFocusHandler"
20 LostFocus="OnLostFocusHandler">Click Or Tab To Give Keyborad Focus</Button>