Text input should update property on each changem instead of lost focus (#694)

This commit is contained in:
Aleh Khantsevich
2025-06-21 01:45:21 +02:00
committed by GitHub
parent 9a88f798fc
commit 7b3459abff

View File

@@ -23,6 +23,6 @@
<StackPanel Spacing="12">
<TextBlock x:Name="DialogDescription" TextWrapping="Wrap" />
<TextBox x:Name="FolderTextBox" Text="{x:Bind CurrentInput, Mode=TwoWay}" />
<TextBox x:Name="FolderTextBox" Text="{x:Bind CurrentInput, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" />
</StackPanel>
</ContentDialog>