2
2
using System . Windows ;
3
3
using System . Windows . Controls ;
4
4
using System . Windows . Input ;
5
+ using System . Windows . Interop ;
6
+ using System . Windows . Media ;
5
7
using CommunityToolkit . Mvvm . ComponentModel ;
6
8
using CommunityToolkit . Mvvm . Input ;
7
9
using CurvaLauncher . Models ;
8
10
using CurvaLauncher . Services ;
11
+ using CurvaLauncher . Utilities ;
9
12
using CurvaLauncher . ViewModels ;
10
13
using Wpf . Ui . Appearance ;
11
14
@@ -17,6 +20,8 @@ namespace CurvaLauncher;
17
20
[ ObservableObject ]
18
21
public partial class MainWindow : Wpf . Ui . Controls . UiWindow
19
22
{
23
+ private bool _firstShow = true ;
24
+
20
25
public MainWindow (
21
26
MainViewModel viewModel ,
22
27
ConfigService configService )
@@ -31,13 +36,46 @@ public MainWindow(
31
36
public AppConfig AppConfig { get ; }
32
37
public MainViewModel ViewModel { get ; }
33
38
39
+ private void InitializeWindowRect ( )
40
+ {
41
+ var targetScreen = System . Windows . Forms . Screen . PrimaryScreen ;
42
+
43
+ if ( AppConfig . WindowStartupScreen == WindowStartupScreen . ScreenWithMouse )
44
+ {
45
+ var drawingMousePosition = System . Windows . Forms . Control . MousePosition ;
46
+
47
+ foreach ( var screen in System . Windows . Forms . Screen . AllScreens )
48
+ {
49
+ if ( screen . WorkingArea . Contains ( drawingMousePosition ) )
50
+ {
51
+ targetScreen = screen ;
52
+ break ;
53
+ }
54
+ }
55
+ }
56
+
57
+ if ( targetScreen is null )
58
+ {
59
+ return ;
60
+ }
61
+
62
+ var windowInteropHelper = new WindowInteropHelper ( this ) ;
63
+ var pixelLauncherWidth = ( int ) ( AppConfig . LauncherWidth * VisualTreeHelper . GetDpi ( this ) . DpiScaleX ) ;
64
+
65
+ NativeMethods . GetWindowRect ( windowInteropHelper . Handle , out var windowRect ) ;
66
+ NativeMethods . SetWindowPos ( windowInteropHelper . Handle , 0 ,
67
+ targetScreen . WorkingArea . Left + ( targetScreen . WorkingArea . Width - pixelLauncherWidth ) / 2 ,
68
+ targetScreen . WorkingArea . Top + ( targetScreen . WorkingArea . Height / 4 ) ,
69
+ pixelLauncherWidth ,
70
+ windowRect . Height ,
71
+ 0x0001 ) ;
72
+ }
73
+
34
74
private void WindowLoaded ( object sender , RoutedEventArgs e )
35
75
{
36
76
Wpf . Ui . Appearance . Watcher . Watch ( this , BackgroundType . Mica , true ) ;
37
77
38
- Width = AppConfig . LauncherWidth ;
39
- Left = ( SystemParameters . PrimaryScreenWidth - AppConfig . LauncherWidth ) / 2 ;
40
- Top = SystemParameters . PrimaryScreenHeight / 4 ;
78
+ InitializeWindowRect ( ) ;
41
79
}
42
80
43
81
private void WindowClosing ( object sender , System . ComponentModel . CancelEventArgs e )
@@ -120,7 +158,13 @@ private void WindowIsVisibleChanged(object sender, DependencyPropertyChangedEven
120
158
{
121
159
if ( IsVisible )
122
160
{
161
+ if ( ! _firstShow )
162
+ {
163
+ InitializeWindowRect ( ) ;
164
+ }
165
+
123
166
ViewModel . QueryCommand . Execute ( null ) ;
167
+ _firstShow = false ;
124
168
}
125
169
}
126
170
}
0 commit comments