Skip to content

Instantly share code, notes, and snippets.

View awekang's full-sized avatar

Deokhoon-Kang awekang

  • Megazone
View GitHub Profile
@dkalamari
dkalamari / gist:10963821
Created April 17, 2014 08:17
WPF TextBox focus through MVVM
<Style x:Key="NormalTextBox" TargetType="{x:Type TextBox}">
<Style.Triggers>
<DataTrigger Binding="{Binding IsFocused}" Value="True">
<Setter Property="FocusManager.FocusedElement"
Value="{Binding RelativeSource={RelativeSource Self}}" />
</DataTrigger>
</Style.Triggers>
</Style>