From 388d6707d013d60f7148d3de0d0000828a758b57 Mon Sep 17 00:00:00 2001 From: Yun Chan Date: Sat, 5 Sep 2026 12:44:23 +0900 Subject: [PATCH] feat(ui): elevate cockpit ergonomics, add search watermark, queue selection styling, and shortcut bindings --- .gitignore | 3 + packaging/Package.appxmanifest | 2 +- .../Views/MainWindow.xaml | 215 ++++++++++++++++-- .../Views/MainWindow.xaml.cs | 117 +++++++++- .../DesignAuditAstTests.cs | 131 +++++++++++ .../UnifiedTitleBarTests.cs | 17 ++ 6 files changed, 462 insertions(+), 23 deletions(-) diff --git a/.gitignore b/.gitignore index 8a9fc76..124dfc0 100644 --- a/.gitignore +++ b/.gitignore @@ -47,6 +47,9 @@ src/Everything2Everything.Shell/Everythi*/ # .NET artifacts dir from BuildMsix.ps1 artifacts/ +# test assets +test_assets/ + # NuGet packages restore + nuget.exe cache packages/ tools/* diff --git a/packaging/Package.appxmanifest b/packaging/Package.appxmanifest index f534f51..0dd9969 100644 --- a/packaging/Package.appxmanifest +++ b/packaging/Package.appxmanifest @@ -1,6 +1,6 @@ - + Everything2Everything YunChan diff --git a/src/Everything2Everything.App/Views/MainWindow.xaml b/src/Everything2Everything.App/Views/MainWindow.xaml index 89e9ed1..429a3d1 100644 --- a/src/Everything2Everything.App/Views/MainWindow.xaml +++ b/src/Everything2Everything.App/Views/MainWindow.xaml @@ -26,6 +26,8 @@ + + @@ -174,7 +176,7 @@ - + @@ -217,6 +219,7 @@ @@ -464,16 +467,16 @@ - + - + - @@ -481,11 +484,11 @@ Content="…" Style="{StaticResource FsSecondaryButtonStyle}" Command="{Binding PickOutputFolderCommand, RelativeSource={RelativeSource AncestorType=Window}}"/> - - + + BorderThickness="0,1,0,0" Padding="16,12"> - + - - + + + Padding="28,5,24,5" Text="{Binding SearchText, RelativeSource={RelativeSource AncestorType=Window}, UpdateSourceTrigger=PropertyChanged}" + ToolTip="파일명 또는 확장자로 검색" VerticalAlignment="Center"/> + HorizontalAlignment="Left" VerticalAlignment="Center" Margin="8,0,0,0" IsHitTestVisible="False"/> + + + + + + @@ -751,6 +794,28 @@ + + + + + + + + + + + + + + + + + + @@ -1106,6 +1226,7 @@ + @@ -1211,6 +1332,60 @@ BorderBrush="{StaticResource FsBorderSubtle}" BorderThickness="0,1,0,0"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - -