42 lines
1.5 KiB
XML
42 lines
1.5 KiB
XML
<UserControl
|
|
x:Class="PhotoRenamer.File.Views.ViewA"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:prism="http://prismlibrary.com/"
|
|
xmlns:viewModels="clr-namespace:PhotoRenamer.File.ViewModels"
|
|
d:DataContext="{d:DesignInstance viewModels:ViewAViewModel}"
|
|
d:DesignHeight="300"
|
|
d:DesignWidth="300"
|
|
prism:ViewModelLocator.AutoWireViewModel="True"
|
|
mc:Ignorable="d">
|
|
<DockPanel>
|
|
<ToolBarTray DockPanel.Dock="Top" Orientation="Horizontal">
|
|
<ToolBar ToolBarTray.IsLocked="True">
|
|
<Button Command="{Binding SelectFilesCommand}" Content="Select Files" />
|
|
<Button Command="{Binding ClearCommand}" Content="Clear" />
|
|
</ToolBar>
|
|
</ToolBarTray>
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition />
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition />
|
|
</Grid.RowDefinitions>
|
|
<GroupBox
|
|
Grid.Row="0"
|
|
Margin="5"
|
|
Header="Source">
|
|
<ListView />
|
|
</GroupBox>
|
|
<GroupBox
|
|
Grid.Row="2"
|
|
Margin="5"
|
|
Header="Target">
|
|
<ListView />
|
|
</GroupBox>
|
|
</Grid>
|
|
</DockPanel>
|
|
</UserControl>
|