aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Utilities/Tango.UITests
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2018-11-21 14:43:51 +0200
committerRoy Ben-Shabat <Roy@Twine-s.com>2018-11-21 14:43:51 +0200
commit9ee373ebf7518c96fdf685da792568680dd7f135 (patch)
tree92c2c8f60c383ab61e86e02d40ce6677cd77d955 /Software/Visual_Studio/Utilities/Tango.UITests
parent36dcf50eec20835ab1955932e89f9c6ffc68acde (diff)
downloadTango-9ee373ebf7518c96fdf685da792568680dd7f135.tar.gz
Tango-9ee373ebf7518c96fdf685da792568680dd7f135.zip
Working on Touch File Explorer.
Diffstat (limited to 'Software/Visual_Studio/Utilities/Tango.UITests')
-rw-r--r--Software/Visual_Studio/Utilities/Tango.UITests/MainWindow.xaml4
1 files changed, 2 insertions, 2 deletions
diff --git a/Software/Visual_Studio/Utilities/Tango.UITests/MainWindow.xaml b/Software/Visual_Studio/Utilities/Tango.UITests/MainWindow.xaml
index ff1afdd22..b8301312d 100644
--- a/Software/Visual_Studio/Utilities/Tango.UITests/MainWindow.xaml
+++ b/Software/Visual_Studio/Utilities/Tango.UITests/MainWindow.xaml
@@ -21,12 +21,12 @@
<RowDefinition Height="232*"/>
<RowDefinition Height="50"/>
</Grid.RowDefinitions>
- <explorer:ExplorerControl x:Name="explorer" CurrentPath="{Binding CurrentPath}" />
+ <explorer:ExplorerControl x:Name="explorer" CurrentPath="{Binding CurrentPath,Mode=TwoWay}" />
<StackPanel Orientation="Horizontal" Grid.Row="1">
<Button Click="Button_Click">LOAD</Button>
<Button Command="{Binding ElementName=explorer,Path=BackCommand}">BACK</Button>
- <TextBox Width="200" Margin="10 0 0 0" Text="{Binding CurrentPath}"></TextBox>
+ <TextBox Width="200" Margin="10 0 0 0" Text="{Binding ElementName=explorer,Path=CurrentPath}"></TextBox>
</StackPanel>
</Grid>
</Window>