我在WPF DataGrid上遇到了一个可怕的问题!我在TextBox
内放了一个DataGridColumnHeader
,并更改了KeyBoardLanguage
上的TextBox_GotFocus
。
这是我DataGridColumnHeader
的风格:
<Style x:Key="DataGridSelectorColumnHeaderStyle" TargetType="{x:Type DataGridColumnHeader}" >
<Setter Property="ContentTemplate">
<Setter.Value>
<DataTemplate>
<TextBox xamlservices:GotFocusBehavior.GotFocus="{Binding TextBoxGotFocusCommand}"
xamlservices:GotFocusBehavior.GotFocusParameter="{Binding RelativeSource={RelativeSource Mode=Self}}"/>
</DataTemplate>
</Setter.Value>
</Setter>
</Style>
和
public ICommand TextBoxGotFocusCommand
{
get { return new RelayCommand<TextBox>(OnTextBoxGotFocus); }
}
TextBox txtSearch;
private void OnTextBoxGotFocus(TextBox sender)
{
txtSearch = sender;
if (...)
{
CultureInfo lanq = new CultureInfo("en-us", false);
InputLanguageManager.SetInputLanguage(txtSearch, lanq);
}
}
问题是,当我点击Textbox
时,语言会发生变化,点击其他地方并返回TextBox
!它不会在第一次点击时更改语言。
任何想法都将不胜感激。