mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-12 18:29:24 +08:00
Adding back binding to QueryText and updating the cursor position similar to how wox originally did it.
This commit is contained in:
parent
d4da98bae5
commit
7add40ae93
@ -375,6 +375,7 @@
|
|||||||
x:FieldModifier="public"
|
x:FieldModifier="public"
|
||||||
Style="{StaticResource CustomAutoSuggestBoxTextBoxStyle}"
|
Style="{StaticResource CustomAutoSuggestBoxTextBoxStyle}"
|
||||||
PlaceholderText="Start typing"
|
PlaceholderText="Start typing"
|
||||||
|
Text="{Binding QueryText}"
|
||||||
Height="60"
|
Height="60"
|
||||||
ScrollViewer.BringIntoViewOnFocusChange="False"
|
ScrollViewer.BringIntoViewOnFocusChange="False"
|
||||||
Canvas.ZIndex="0"
|
Canvas.ZIndex="0"
|
||||||
|
@ -354,6 +354,12 @@ namespace PowerLauncher
|
|||||||
{
|
{
|
||||||
_launcher.AutoCompleteTextBox.PlaceholderText = String.Empty;
|
_launcher.AutoCompleteTextBox.PlaceholderText = String.Empty;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (_viewModel.QueryTextCursorMovedToEnd)
|
||||||
|
{
|
||||||
|
_launcher.TextBox.SelectionStart = _launcher.TextBox.Text.Length;
|
||||||
|
_viewModel.QueryTextCursorMovedToEnd = false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private async Task DelayedCheck(DateTime latestTimeOfTyping, string text)
|
private async Task DelayedCheck(DateTime latestTimeOfTyping, string text)
|
||||||
|
Loading…
Reference in New Issue
Block a user