-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
11 changed files
with
131 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -57,7 +57,6 @@ async void WalkThrough(DirectoryInfo dir) | |
|
||
Console.WriteLine(); | ||
} | ||
|
||
} | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,39 @@ | ||
<Window x:Class="NCMDumpGUI.MainWindow" | ||
<hc:BlurWindow x:Class="NCMDumpGUI.MainWindow" | ||
xmlns:hc="https://handyorg.github.io/handycontrol" | ||
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:NCMDumpGUI" | ||
mc:Ignorable="d" | ||
Title="NCMDumpGUI" Height="480" Width="720" Icon="/NCMDump.png" MinWidth="720" MinHeight="480" ResizeMode="CanResize" WindowStartupLocation="CenterScreen" AllowDrop="True" Closed="Window_Closed"> | ||
mc:Ignorable="d" | ||
BorderThickness ="0" | ||
Style="{StaticResource WindowBlur}" | ||
Title="NCMDumpGUI" | ||
Height="480" Width="720" | ||
Icon="/NCMDump.png" | ||
MinWidth="720" MinHeight="480" | ||
ResizeMode="CanResize" | ||
WindowStartupLocation="CenterScreen" | ||
AllowDrop="True" | ||
Closed="Window_Closed"> | ||
<Grid> | ||
<Grid.RowDefinitions> | ||
<RowDefinition Height="5*"/> | ||
<RowDefinition Height="1*"/> | ||
<RowDefinition Height="6*"/> | ||
<RowDefinition Height="75"/> | ||
</Grid.RowDefinitions> | ||
|
||
<ListView x:Name="WorkingList" Grid.Row="0" SizeChanged="ListView_SizeChanged" AllowDrop="True" Drop="WorkingList_Drop"> | ||
<ListView Style="{StaticResource ListView.Small}" Background="Transparent" x:Name="WorkingList" ItemsSource="{Binding NCMCollection}" Grid.Row="0" SizeChanged="ListView_SizeChanged" AllowDrop="True" Drop="WorkingList_Drop" Margin="20,20,20,20"> | ||
<ListView.View> | ||
<GridView> | ||
<GridViewColumn Header="File" DisplayMemberBinding="{Binding FilePath}"/> | ||
<GridViewColumn Header="Status"> | ||
<GridViewColumn.CellTemplate> | ||
<DataTemplate> | ||
<TextBlock Text="{Binding FileStatus}" TextAlignment="Center" HorizontalAlignment="Stretch" /> | ||
</DataTemplate> | ||
</GridViewColumn.CellTemplate> | ||
<GridViewColumn.HeaderContainerStyle> | ||
<Style TargetType="{x:Type GridViewColumnHeader}"> | ||
<Setter Property="HorizontalContentAlignment" Value="Center" /> | ||
</Style> | ||
</GridViewColumn.HeaderContainerStyle> | ||
</GridViewColumn> | ||
<GridViewColumn Header="Status" DisplayMemberBinding="{Binding FileStatus}"/> | ||
</GridView> | ||
</ListView.View> | ||
</ListView> | ||
<Button x:Name="StartButton" Content="Convert" HorizontalAlignment="Right" Margin="0,0,20,20" Click="StartButton_Click" Grid.Row="1" FontSize="18" Background="#FF005FB8" Foreground="White" VerticalAlignment="Bottom" Height="35" Width="120"/> | ||
<Button x:Name="SelectFileButton" Content="Select File" HorizontalAlignment="Right" Click="SelectFileButton_Click" Grid.Row="1" FontSize="18" Background="#FFFBFBFB" Foreground="Black" VerticalAlignment="Bottom" Height="35" Width="120" Margin="0,0,160,20"/> | ||
<Button x:Name="SelectFolderButton" Content="Select Folder" HorizontalAlignment="Right" Click="SelectFolderButton_Click" Grid.Row="1" FontSize="18" Background="#FFFBFBFB" Foreground="Black" VerticalAlignment="Bottom" Height="35" Width="120" Margin="0,0,300,20"/> | ||
<Button x:Name="ClearButton" Content="Clear" HorizontalAlignment="Left" Click="ClearButton_Click" Grid.Row="1" FontSize="18" Background="#FFFBFBFB" Foreground="Black" VerticalAlignment="Top" Height="35" Width="120" Margin="20,20,0,0"/> | ||
<Button x:Name="StartButton" Content="Convert" HorizontalAlignment="Right" Margin="0,0,20,20" Click="StartButton_Click" Grid.Row="1" Style="{StaticResource ButtonPrimary}" VerticalAlignment="Bottom" Height="35" Width="120" FontSize="14"/> | ||
<Button x:Name="SelectFileButton" Content="Select File" HorizontalAlignment="Right" Click="SelectFileButton_Click" Grid.Row="1" Style="{StaticResource ButtonInfo}" VerticalAlignment="Bottom" Height="35" Width="120" Margin="0,0,160,20" FontSize="14"/> | ||
<Button x:Name="SelectFolderButton" Content="Select Folder" HorizontalAlignment="Right" Click="SelectFolderButton_Click" Grid.Row="1" Style="{StaticResource ButtonInfo}" VerticalAlignment="Bottom" Height="35" Width="120" Margin="0,0,300,20" FontSize="14"/> | ||
<Button x:Name="ClearButton" Content="Clear" HorizontalAlignment="Left" Click="ClearButton_Click" Grid.Row="1" Style="{StaticResource ButtonDanger}" VerticalAlignment="Bottom" Height="35" Width="120" Margin="20,0,0,20" FontSize="14"/> | ||
</Grid> | ||
|
||
|
||
</Window> | ||
</hc:BlurWindow> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters