Skip to content

Commit

Permalink
Improve file transfer view
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperJMN committed Oct 18, 2023
1 parent 89d4272 commit 166b016
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@
<ContentControl Margin="0" Content="{Binding FileSystemExplorer}">
<ContentControl.ContentTemplate>
<DataTemplate DataType="explorer1:FileSystemExplorer">
<Panel>
<DockPanel>
<Grid ColumnDefinitions="* *">
<DockPanel Grid.ColumnSpan="2">
<ContentControl Content="{Binding ToolBar}" DockPanel.Dock="Top" />
<ContentControl Content="{Binding Address}" DockPanel.Dock="Top" Margin="0 4" />
<ContentControl Content="{Binding Details^}" />
</DockPanel>
<transferManager:LightTransferManagerView Width="400" VerticalAlignment="Bottom"
HorizontalAlignment="Right" Margin="20"
<transferManager:LightTransferManagerView Grid.Column="1" VerticalAlignment="Bottom"
HorizontalAlignment="Right" Margin="15"
DataContext="{Binding TransferManager}" />
</Panel>
</Grid>
</DataTemplate>
</ContentControl.ContentTemplate>
</ContentControl>
Expand Down

0 comments on commit 166b016

Please sign in to comment.