mirror of
https://github.com/crskycode/GARbro.git
synced 2026-07-08 01:30:18 +08:00
Fix IsTextBoxFocused property name
This commit is contained in:
@@ -48,11 +48,11 @@ namespace GARbro.GUI
|
|||||||
|
|
||||||
public bool IsTextBoxFocused
|
public bool IsTextBoxFocused
|
||||||
{
|
{
|
||||||
get { return (bool)GetValue (HasFocusProperty); }
|
get { return (bool)GetValue (IsTextBoxFocusedProperty); }
|
||||||
private set { SetValue (HasFocusProperty, value); }
|
private set { SetValue (IsTextBoxFocusedProperty, value); }
|
||||||
}
|
}
|
||||||
|
|
||||||
public static readonly DependencyProperty HasFocusProperty =
|
public static readonly DependencyProperty IsTextBoxFocusedProperty =
|
||||||
DependencyProperty.RegisterAttached ("IsTextBoxFocused", typeof(bool), typeof(ExtAutoCompleteBox), new UIPropertyMetadata());
|
DependencyProperty.RegisterAttached ("IsTextBoxFocused", typeof(bool), typeof(ExtAutoCompleteBox), new UIPropertyMetadata());
|
||||||
|
|
||||||
protected override void OnKeyDown (KeyEventArgs e)
|
protected override void OnKeyDown (KeyEventArgs e)
|
||||||
|
|||||||
Reference in New Issue
Block a user