21 lines
No EOL
1.2 KiB
XML
21 lines
No EOL
1.2 KiB
XML
<Window x:Class="DesktopApplication.MainWindow"
|
|
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:local="clr-namespace:DesktopApplication"
|
|
mc:Ignorable="d"
|
|
Title="MainWindow" MinHeight="350" MinWidth="525" Height="350" Width="525">
|
|
<Grid>
|
|
<StackPanel>
|
|
<DockPanel HorizontalAlignment="Left">
|
|
<Button Name="PickFilesBtn" Click="PickFilesBtn_OnClick" Height="25">Pick Source Folder</Button>
|
|
<Separator Visibility="Hidden" Width="15" />
|
|
<Button Name="CleanFilesBtn" Click="CleanFilesBtn_OnClick" Height="25">Clean Files</Button>
|
|
</DockPanel>
|
|
<ListBox Name="PickedFilesView" Height="350" ScrollViewer.VerticalScrollBarVisibility="Auto"
|
|
ScrollViewer.HorizontalScrollBarVisibility="Disabled"
|
|
ItemsSource="{Binding Source={x:Static local:MainWindow.files}}" />
|
|
</StackPanel>
|
|
</Grid>
|
|
</Window> |