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-16 10:31:49 +00:00
|
|
|
<Button x:Name="Load" Content="Load" HorizontalAlignment="Left" Margin="10,10,0,0" VerticalAlignment="Top" Height="35" Width="65" Click="LoadFilesClick"/>
|
2023-02-16 10:37:45 +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"/>
|
|
|
|
<Button x:Name="Run" Content="Run" Click="RunOp" Margin="80,0,0,10" HorizontalAlignment="Left" Width="65" Height="35" VerticalAlignment="Bottom"/>
|
|
|
|
<ProgressBar x:Name="Progress" Height="35" Margin="150,0,10,10" VerticalAlignment="Bottom"/>
|
|
|
|
<ComboBox x:Name="Options" Margin="10,0,0,10" SelectedIndex="0" HorizontalAlignment="Left" Width="65" Height="35" VerticalAlignment="Bottom">
|
2023-02-16 10:31:49 +00:00
|
|
|
<ListBoxItem x:Name="Picture_Option" Content="Picture" VerticalAlignment="Center"/>
|
|
|
|
<ListBoxItem x:Name="Video_Option" Content="Video" VerticalAlignment="Center"/>
|
|
|
|
</ComboBox>
|
2023-02-12 23:23:10 +00:00
|
|
|
</Grid>
|
|
|
|
</Window>
|