diff --git a/src/EverythingToJpeg.App/App.xaml b/src/EverythingToJpeg.App/App.xaml index 430b975..7516c02 100644 --- a/src/EverythingToJpeg.App/App.xaml +++ b/src/EverythingToJpeg.App/App.xaml @@ -9,6 +9,7 @@ + diff --git a/src/EverythingToJpeg.App/App.xaml.cs b/src/EverythingToJpeg.App/App.xaml.cs index e005df4..6ed2c32 100644 --- a/src/EverythingToJpeg.App/App.xaml.cs +++ b/src/EverythingToJpeg.App/App.xaml.cs @@ -67,7 +67,7 @@ public partial class App : Application private void ShowConvertDialog(IReadOnlyList files) { - var window = new ConvertWindow(Engine, files); + var window = new Views.MainWindow(files); MainWindow = window; window.Show(); } diff --git a/src/EverythingToJpeg.App/Views/ConvertWindow.xaml b/src/EverythingToJpeg.App/Views/ConvertWindow.xaml index f896c18..8e776b4 100644 --- a/src/EverythingToJpeg.App/Views/ConvertWindow.xaml +++ b/src/EverythingToJpeg.App/Views/ConvertWindow.xaml @@ -3,47 +3,66 @@ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:ui="http://schemas.lepo.co/wpfui/2022/xaml" Title="JPEG로 변환" - Width="640" Height="780" - MinWidth="520" MinHeight="560" + Width="720" Height="780" + MinWidth="560" MinHeight="560" ExtendsContentIntoTitleBar="True" - WindowBackdropType="Mica" + WindowBackdropType="None" WindowCornerPreference="Round" WindowStartupLocation="CenterOwner" AllowDrop="True" Drop="OnFilesDropped" - DragOver="OnDragOver"> - + DragOver="OnDragOver" + TextOptions.TextFormattingMode="Display" + UseLayoutRounding="True"> + + + + + + + + + - + - - + + - - + + - - + + - - +