summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF
diff options
context:
space:
mode:
authorsr55 <[email protected]>2012-05-25 23:19:22 +0000
committersr55 <[email protected]>2012-05-25 23:19:22 +0000
commit39c79db9e18a6e3c13c8d6818474e8fe74dba2cc (patch)
tree61a6d8df324d816e6c197147c4b86aa82847c39b /win/CS/HandBrakeWPF
parent87eaea2522f9f90559542808f37bb85e9646d418 (diff)
WinGui: Change the Binding behaviour to update the bound field as the user types rather than when focus is lost.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4697 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF')
-rw-r--r--win/CS/HandBrakeWPF/Views/MainView.xaml2
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/Views/MainView.xaml b/win/CS/HandBrakeWPF/Views/MainView.xaml
index d12fa847c..fd4f0d356 100644
--- a/win/CS/HandBrakeWPF/Views/MainView.xaml
+++ b/win/CS/HandBrakeWPF/Views/MainView.xaml
@@ -260,7 +260,7 @@
<Label Content="Destination" FontWeight="Bold" />
<StackPanel Orientation="Horizontal">
<Label Content="File" Margin="8,0,0,0" />
- <TextBox Name="Destination" Margin="8,0,0,0" Width="600" Text="{Binding CurrentTask.Destination}" />
+ <TextBox Name="Destination" Margin="8,0,0,0" Width="600" Text="{Binding CurrentTask.Destination, UpdateSourceTrigger=PropertyChanged}" />
<Button Name="DestinationBrowser" Margin="8,0,0,0" Content="Browse" Micro:Message.Attach="[Event Click] = [Action BrowseDestination]" />
</StackPanel>
</StackPanel>