diff --git a/Application/FileConverter/Application.xaml b/Application/FileConverter/Application.xaml
index 41d9604f..be3e709d 100644
--- a/Application/FileConverter/Application.xaml
+++ b/Application/FileConverter/Application.xaml
@@ -7,10 +7,15 @@
xmlns:generic="clr-namespace:FileConverter.ValueConverters.Generic"
xmlns:viewModels="clr-namespace:FileConverter.ViewModels"
xmlns:services="clr-namespace:FileConverter.Services"
+ xmlns:sys="clr-namespace:System;assembly=mscorlib"
+ xmlns:ui="http://schemas.inkore.net/lib/ui/wpf/modern"
+ xmlns:ikw="http://schemas.inkore.net/lib/ui/wpf"
ShutdownMode="OnLastWindowClose">
+
+
@@ -71,6 +76,9 @@
+
+
+ 0
diff --git a/Application/FileConverter/Controls/ConversionJobControl.xaml b/Application/FileConverter/Controls/ConversionJobControl.xaml
index caed4eb7..f1713626 100644
--- a/Application/FileConverter/Controls/ConversionJobControl.xaml
+++ b/Application/FileConverter/Controls/ConversionJobControl.xaml
@@ -5,6 +5,8 @@
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:project="clr-namespace:FileConverter.Properties"
xmlns:conversionJobs="clr-namespace:FileConverter.ConversionJobs"
+ xmlns:ui="http://schemas.inkore.net/lib/ui/wpf/modern"
+ xmlns:ikw="http://schemas.inkore.net/lib/ui/wpf"
x:Class="FileConverter.Controls.ConversionJobControl"
mc:Ignorable="d"
d:DesignHeight="100" d:DesignWidth="800">
@@ -15,7 +17,7 @@
-
+
@@ -28,12 +30,12 @@
-
+
-
-
+
+
@@ -54,14 +56,14 @@
-
-
-
diff --git a/Application/FileConverter/Controls/EncodingQualitySliderControl.xaml b/Application/FileConverter/Controls/EncodingQualitySliderControl.xaml
index de6684d5..931ca633 100644
--- a/Application/FileConverter/Controls/EncodingQualitySliderControl.xaml
+++ b/Application/FileConverter/Controls/EncodingQualitySliderControl.xaml
@@ -25,6 +25,6 @@
AutoToolTipPlacement="TopLeft" IsSnapToTickEnabled="True" IsSelectionRangeEnabled="True" Minimum="65" Maximum="245" SelectionStart="115" SelectionEnd="245" SmallChange="8" LargeChange="32" TickPlacement="BottomRight" TickFrequency="8" Ticks="65 85 100 115 130 165 175 190 225 245"
Foreground="{DynamicResource MainDarkBrush}" />
-
+
diff --git a/Application/FileConverter/FileConverter.csproj b/Application/FileConverter/FileConverter.csproj
index 70979b37..fb5175ed 100644
--- a/Application/FileConverter/FileConverter.csproj
+++ b/Application/FileConverter/FileConverter.csproj
@@ -386,6 +386,9 @@
8.4.0
+
+ 0.10.1
+
14.4.0
@@ -401,9 +404,6 @@
15.0.4797.1003
-
- 1.1.135
-
12.0.0
diff --git a/Application/FileConverter/Views/DiagnosticsWindow.xaml b/Application/FileConverter/Views/DiagnosticsWindow.xaml
index d0eb5eba..a8662b7d 100644
--- a/Application/FileConverter/Views/DiagnosticsWindow.xaml
+++ b/Application/FileConverter/Views/DiagnosticsWindow.xaml
@@ -7,6 +7,14 @@
xmlns:project="clr-namespace:FileConverter.Properties"
xmlns:local="clr-namespace:FileConverter"
xmlns:behaviors="http://schemas.microsoft.com/xaml/behaviors"
+ xmlns:ui="http://schemas.inkore.net/lib/ui/wpf/modern"
+ xmlns:ikw="http://schemas.inkore.net/lib/ui/wpf"
+ ui:ThemeManager.IsThemeAware="True"
+ ui:ThemeManager.RequestedTheme="Default"
+ ui:TitleBar.ExtendViewIntoTitleBar="False"
+ ui:TitleBar.Height="48"
+ ui:WindowHelper.SystemBackdropType="Mica"
+ ui:WindowHelper.UseModernWindowStyle="True"
mc:Ignorable="d"
Height="600" Width="800" Icon="/FileConverter;component/Resources/ApplicationIcon.ico"
DataContext="{Binding Diagnostics, Source={StaticResource Locator}}">
@@ -18,7 +26,7 @@
-
+
diff --git a/Application/FileConverter/Views/HelpWindow.xaml b/Application/FileConverter/Views/HelpWindow.xaml
index 1e17913b..5ae9ddab 100644
--- a/Application/FileConverter/Views/HelpWindow.xaml
+++ b/Application/FileConverter/Views/HelpWindow.xaml
@@ -7,6 +7,15 @@
xmlns:project="clr-namespace:FileConverter.Properties"
xmlns:gif="http://wpfanimatedgif.codeplex.com"
xmlns:behaviors="http://schemas.microsoft.com/xaml/behaviors"
+ xmlns:ui="http://schemas.inkore.net/lib/ui/wpf/modern"
+ xmlns:ikw="http://schemas.inkore.net/lib/ui/wpf"
+ ui:ThemeManager.IsThemeAware="True"
+ ui:ThemeManager.RequestedTheme="Default"
+ ui:TitleBar.ExtendViewIntoTitleBar="False"
+ ui:TitleBar.Height="48"
+ ui:WindowHelper.SystemBackdropType="Mica"
+ ui:WindowHelper.UseModernWindowStyle="True"
+ SizeToContent="Height"
mc:Ignorable="d" Icon="/FileConverter;component/Resources/ApplicationIcon.ico" WindowStartupLocation="CenterScreen" WindowStyle="ToolWindow" ResizeMode="NoResize"
Width="1000" Height="880"
DataContext="{Binding Help, Source={StaticResource Locator}}">
@@ -20,13 +29,13 @@
-
+
-
+
diff --git a/Application/FileConverter/Views/MainWindow.xaml b/Application/FileConverter/Views/MainWindow.xaml
index a8419662..f65ca265 100644
--- a/Application/FileConverter/Views/MainWindow.xaml
+++ b/Application/FileConverter/Views/MainWindow.xaml
@@ -7,6 +7,14 @@
xmlns:project="clr-namespace:FileConverter.Properties"
xmlns:controls="clr-namespace:FileConverter.Controls"
xmlns:behaviors="http://schemas.microsoft.com/xaml/behaviors"
+ xmlns:ui="http://schemas.inkore.net/lib/ui/wpf/modern"
+ xmlns:ikw="http://schemas.inkore.net/lib/ui/wpf"
+ ui:ThemeManager.IsThemeAware="True"
+ ui:ThemeManager.RequestedTheme="Default"
+ ui:TitleBar.ExtendViewIntoTitleBar="False"
+ ui:TitleBar.Height="48"
+ ui:WindowHelper.SystemBackdropType="Mica"
+ ui:WindowHelper.UseModernWindowStyle="True"
mc:Ignorable="d" x:Class="FileConverter.Views.MainWindow"
Height="500" Width="950" MinHeight="480" MinWidth="640" WindowStartupLocation="CenterScreen" Icon="/FileConverter;component/Resources/ApplicationIcon.ico"
DataContext="{Binding Main, Source={StaticResource Locator}}">
@@ -28,7 +36,7 @@
ProgressValue="{Binding ConversionJobs, Converter={StaticResource ConversionJobsToProgressValue}}" />
-
+
diff --git a/Application/FileConverter/Views/Resources/ConversionPresetTemplates.xaml b/Application/FileConverter/Views/Resources/ConversionPresetTemplates.xaml
index 98ddf1e7..95d89b7f 100644
--- a/Application/FileConverter/Views/Resources/ConversionPresetTemplates.xaml
+++ b/Application/FileConverter/Views/Resources/ConversionPresetTemplates.xaml
@@ -317,7 +317,7 @@
-
+
@@ -356,21 +356,22 @@
-
-
-
-
-
-
-
-
-
+
+
+
+
-
-
diff --git a/Application/FileConverter/Views/Resources/CustomStyles.xaml b/Application/FileConverter/Views/Resources/CustomStyles.xaml
index d1d705c8..ec2ed497 100644
--- a/Application/FileConverter/Views/Resources/CustomStyles.xaml
+++ b/Application/FileConverter/Views/Resources/CustomStyles.xaml
@@ -12,7 +12,7 @@
-
+ -->
-
+ -->
-
+ -->
\ No newline at end of file
diff --git a/Application/FileConverter/Views/SettingsWindow.xaml b/Application/FileConverter/Views/SettingsWindow.xaml
index e7ede278..7f33955a 100644
--- a/Application/FileConverter/Views/SettingsWindow.xaml
+++ b/Application/FileConverter/Views/SettingsWindow.xaml
@@ -9,6 +9,14 @@
xmlns:behaviors="http://schemas.microsoft.com/xaml/behaviors"
xmlns:generic="clr-namespace:FileConverter.ValueConverters.Generic"
xmlns:controls="clr-namespace:FileConverter.Controls"
+ xmlns:ui="http://schemas.inkore.net/lib/ui/wpf/modern"
+ xmlns:ikw="http://schemas.inkore.net/lib/ui/wpf"
+ ui:ThemeManager.IsThemeAware="True"
+ ui:ThemeManager.RequestedTheme="Default"
+ ui:TitleBar.ExtendViewIntoTitleBar="True"
+ ui:TitleBar.Height="48"
+ ui:WindowHelper.SystemBackdropType="Mica"
+ ui:WindowHelper.UseModernWindowStyle="True"
x:Class="FileConverter.Views.SettingsWindow"
MinWidth="800" MinHeight="600"
Width="1050" Height="700"
@@ -41,7 +49,7 @@
-
+
@@ -57,137 +65,139 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
-
-
+
+
-
-
-
-
-
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
+
-
+
-
-
-
-
-
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
-
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
+
@@ -213,7 +223,7 @@
-
+
@@ -281,6 +291,7 @@
+
diff --git a/Application/FileConverter/Views/UpgradeWindow.xaml b/Application/FileConverter/Views/UpgradeWindow.xaml
index 7b47a805..32f597df 100644
--- a/Application/FileConverter/Views/UpgradeWindow.xaml
+++ b/Application/FileConverter/Views/UpgradeWindow.xaml
@@ -5,6 +5,14 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:project="clr-namespace:FileConverter.Properties"
xmlns:behaviors="http://schemas.microsoft.com/xaml/behaviors"
+ xmlns:ui="http://schemas.inkore.net/lib/ui/wpf/modern"
+ xmlns:ikw="http://schemas.inkore.net/lib/ui/wpf"
+ ui:ThemeManager.IsThemeAware="True"
+ ui:ThemeManager.RequestedTheme="Default"
+ ui:TitleBar.ExtendViewIntoTitleBar="False"
+ ui:TitleBar.Height="48"
+ ui:WindowHelper.SystemBackdropType="Mica"
+ ui:WindowHelper.UseModernWindowStyle="True"
mc:Ignorable="d"
Title="{x:Static project:Resources.UpgradeWindowTitle}"
WindowStartupLocation="CenterScreen" Icon="/FileConverter;component/Resources/ApplicationIcon.ico"
@@ -18,7 +26,7 @@
-
+
diff --git a/Installer/Product.wxs b/Installer/Product.wxs
index ba6458e2..866cbaa6 100644
--- a/Installer/Product.wxs
+++ b/Installer/Product.wxs
@@ -96,9 +96,6 @@
-
-
-
@@ -150,6 +147,16 @@
+
+
+
+
+
+
+
+
+
+