2023-02-12 23:23:10 +00:00
|
|
|
<Window x:Class="Tranquility.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:Tranquility"
|
|
|
|
mc:Ignorable="d"
|
2023-02-13 09:58:11 +00:00
|
|
|
Title="Tranquility" Height="450" Width="539">
|
2023-02-12 23:23:10 +00:00
|
|
|
<Grid>
|
2023-02-13 09:58:11 +00:00
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
</Grid.ColumnDefinitions>
|
2023-02-13 12:25:46 +00:00
|
|
|
<Grid x:Name="Left" Grid.ColumnSpan="2" HorizontalAlignment="Stretch" Height="NaN" Margin="0,0,0,0" VerticalAlignment="Stretch" Width="NaN" RenderTransformOrigin="1.015,0.537">
|
2023-02-13 09:58:11 +00:00
|
|
|
<Grid.ColumnDefinitions>
|
2023-02-13 12:25:46 +00:00
|
|
|
<ColumnDefinition/>
|
|
|
|
<ColumnDefinition Width="0*"/>
|
2023-02-13 09:58:11 +00:00
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Button x:Name="Load" Content="Load" HorizontalAlignment="Left" Margin="10,10,0,0" VerticalAlignment="Top" Height="35" Width="65" Click="LoadFilesClick"/>
|
2023-02-13 12:39:34 +00:00
|
|
|
<TextBox x:Name="Input_Folder" Margin="80,10,10,0" TextWrapping="Wrap" Text="INPUT FOLDER" VerticalAlignment="Top" Height="35" IsReadOnly="True"/>
|
|
|
|
<TextBox x:Name="Input_Files" TextWrapping="Wrap" Text="INPUT FILES" Margin="10,50,10,50" IsReadOnly="True"/>
|
2023-02-13 17:01:47 +00:00
|
|
|
<Button x:Name="Run" Content="Run" Click="RunOp" Margin="80,0,0,10" Height="35" VerticalAlignment="Bottom" HorizontalAlignment="Left" Width="65"/>
|
|
|
|
<ProgressBar x:Name="Progress" Height="35" Margin="150,0,8,10" VerticalAlignment="Bottom"/>
|
|
|
|
<ComboBox x:Name="Options" HorizontalAlignment="Left" Margin="10,0,0,10" VerticalAlignment="Bottom" Width="65" Height="35" SelectedIndex="0">
|
|
|
|
<ListBoxItem Content="Picture" VerticalAlignment="Center"/>
|
|
|
|
<ListBoxItem Content="Video" VerticalAlignment="Center"/>
|
|
|
|
</ComboBox>
|
2023-02-13 09:58:11 +00:00
|
|
|
</Grid>
|
2023-02-12 23:23:10 +00:00
|
|
|
</Grid>
|
|
|
|
</Window>
|