|
|
@ -91,7 +91,11 @@ namespace ICSharpCode.ILSpy |
|
|
|
} |
|
|
|
} |
|
|
|
Dispatcher.BeginInvoke( |
|
|
|
Dispatcher.BeginInvoke( |
|
|
|
DispatcherPriority.Background, |
|
|
|
DispatcherPriority.Background, |
|
|
|
new Func<bool>(searchBox.Focus)); |
|
|
|
new Action( |
|
|
|
|
|
|
|
delegate { |
|
|
|
|
|
|
|
searchBox.Focus(); |
|
|
|
|
|
|
|
searchBox.SelectAll(); |
|
|
|
|
|
|
|
})); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static readonly DependencyProperty SearchTermProperty = |
|
|
|
public static readonly DependencyProperty SearchTermProperty = |
|
|
|