-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainWindow.xaml.cs
More file actions
253 lines (223 loc) · 9.35 KB
/
Copy pathMainWindow.xaml.cs
File metadata and controls
253 lines (223 loc) · 9.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
using Buff_App.ViewModels;
using Microsoft.UI.Windowing;
using Microsoft.UI.Xaml;
using Microsoft.UI.Xaml.Controls;
using Microsoft.UI.Xaml.Documents;
using Microsoft.UI.Xaml.Input;
using Microsoft.UI.Xaml.Media;
using System.Runtime.InteropServices;
using Windows.Graphics;
namespace Buff_App;
public sealed partial class MainWindow : Window
{
private const string WindowTitle = "Buff | Network Manager";
private const int MinimumWindowWidth = 900;
private const int MinimumWindowHeight = 650;
private const int SwRestore = 9;
private const int GwlWndProc = -4;
private const uint WmGetMinMaxInfo = 0x0024;
private readonly nint _windowHandle;
private nint _previousWndProc;
private WndProcDelegate? _wndProcDelegate;
public MainWindow(MainViewModel viewModel)
{
ViewModel = viewModel;
InitializeComponent();
RootGrid.DataContext = ViewModel;
_windowHandle = WinRT.Interop.WindowNative.GetWindowHandle(this);
ExtendsContentIntoTitleBar = true;
SetTitleBar(AppTitleBar);
Title = WindowTitle;
AppWindow.Title = WindowTitle;
AppWindow.SetIcon("Assets/tray.ico");
AppWindow.Resize(new SizeInt32(1200, 830));
if (AppWindow.Presenter is OverlappedPresenter presenter)
{
presenter.IsMinimizable = false;
presenter.IsMaximizable = false;
presenter.IsAlwaysOnTop = false;
presenter.SetBorderAndTitleBar(true, false);
}
HookMinimumWindowSize();
}
public MainViewModel ViewModel { get; }
private void DoQuit()
{
ViewModel.StopPolling();
Application.Current.Exit();
}
public void BringToFront()
{
ShowWindow(_windowHandle, SwRestore);
Activate();
SetForegroundWindow(_windowHandle);
}
private void QuitButton_Click(object sender, RoutedEventArgs e) => DoQuit();
private void InfoButton_PointerEntered(object sender, PointerRoutedEventArgs e)
{
InfoIcon.Foreground = new SolidColorBrush(Windows.UI.Color.FromArgb(255, 83, 192, 40));
}
private void InfoButton_PointerExited(object sender, PointerRoutedEventArgs e)
{
InfoIcon.Foreground = new SolidColorBrush(Windows.UI.Color.FromArgb(255, 138, 145, 153));
}
private async void InfoButton_Click(object sender, RoutedEventArgs e)
{
var dialog = new ContentDialog
{
XamlRoot = RootGrid.XamlRoot,
RequestedTheme = ElementTheme.Dark,
Background = new SolidColorBrush(Windows.UI.Color.FromArgb(255, 13, 16, 18)),
BorderBrush = new SolidColorBrush(Windows.UI.Color.FromArgb(255, 30, 34, 38)),
BorderThickness = new Thickness(1)
};
var githubButton = new HyperlinkButton
{
Content = "View project on GitHub",
NavigateUri = new Uri("https://github.com/shanto-joseph/Buff"),
Foreground = new SolidColorBrush(Windows.UI.Color.FromArgb(255, 83, 192, 40)),
BorderThickness = new Thickness(0),
Padding = new Thickness(0),
HorizontalAlignment = HorizontalAlignment.Left
};
var coffeeButton = new HyperlinkButton
{
Content = "Buy me a coffee",
NavigateUri = new Uri("https://coffee.shantojoseph.com/"),
Foreground = new SolidColorBrush(Windows.UI.Color.FromArgb(255, 83, 192, 40)),
BorderThickness = new Thickness(0),
Padding = new Thickness(0),
HorizontalAlignment = HorizontalAlignment.Left
};
var closeButton = new Button
{
Content = "Close",
HorizontalAlignment = HorizontalAlignment.Stretch,
Margin = new Thickness(0, 8, 0, 0),
Padding = new Thickness(0, 10, 0, 10),
Background = new SolidColorBrush(Windows.UI.Color.FromArgb(255, 83, 192, 40)),
Foreground = new SolidColorBrush(Windows.UI.Color.FromArgb(255, 11, 15, 14)),
BorderThickness = new Thickness(0),
CornerRadius = new CornerRadius(8)
};
closeButton.Click += (_, _) => dialog.Hide();
var dialogContent = new Border
{
Background = new SolidColorBrush(Windows.UI.Color.FromArgb(255, 17, 20, 22)),
BorderBrush = new SolidColorBrush(Windows.UI.Color.FromArgb(255, 30, 34, 38)),
BorderThickness = new Thickness(1),
CornerRadius = new CornerRadius(14),
Padding = new Thickness(20),
Child = new StackPanel
{
Spacing = 10,
Children =
{
new StackPanel
{
Spacing = 4,
Children =
{
new TextBlock
{
Text = "Buff",
FontSize = 22,
FontWeight = Microsoft.UI.Text.FontWeights.SemiBold,
Foreground = new SolidColorBrush(Windows.UI.Color.FromArgb(255, 237, 237, 240))
},
new TextBlock
{
Text = "Version 1.0.0",
FontSize = 11,
Foreground = new SolidColorBrush(Windows.UI.Color.FromArgb(255, 127, 138, 146))
},
new TextBlock
{
Text = "Network adapter priority and speed testing for Windows.",
FontSize = 13,
Foreground = new SolidColorBrush(Windows.UI.Color.FromArgb(255, 138, 145, 153)),
TextWrapping = TextWrapping.WrapWholeWords
}
}
},
new Border
{
Height = 1,
Background = new SolidColorBrush(Windows.UI.Color.FromArgb(255, 31, 42, 51))
},
new StackPanel
{
Spacing = 6,
Children =
{
new TextBlock
{
Text = "Support Buff",
FontSize = 14,
FontWeight = Microsoft.UI.Text.FontWeights.SemiBold,
Foreground = new SolidColorBrush(Windows.UI.Color.FromArgb(255, 237, 237, 240))
},
new TextBlock
{
Text = "If Buff helps your setup, you can support future updates here.",
FontSize = 12,
Foreground = new SolidColorBrush(Windows.UI.Color.FromArgb(255, 138, 145, 153)),
TextWrapping = TextWrapping.WrapWholeWords
},
githubButton,
coffeeButton,
closeButton
}
}
}
}
};
dialog.Title = "About Buff";
dialog.Content = dialogContent;
await dialog.ShowAsync();
}
private void HookMinimumWindowSize()
{
_wndProcDelegate = WindowProc;
var newWndProc = Marshal.GetFunctionPointerForDelegate(_wndProcDelegate);
_previousWndProc = SetWindowLongPtr(_windowHandle, GwlWndProc, newWndProc);
}
private nint WindowProc(nint hWnd, uint msg, nuint wParam, nint lParam)
{
if (msg == WmGetMinMaxInfo)
{
var minMaxInfo = Marshal.PtrToStructure<MinMaxInfo>(lParam);
minMaxInfo.PointMinTrackSize.X = MinimumWindowWidth;
minMaxInfo.PointMinTrackSize.Y = MinimumWindowHeight;
Marshal.StructureToPtr(minMaxInfo, lParam, false);
return 0;
}
return CallWindowProc(_previousWndProc, hWnd, msg, wParam, lParam);
}
[StructLayout(LayoutKind.Sequential)]
private struct Point
{
public int X;
public int Y;
}
[StructLayout(LayoutKind.Sequential)]
private struct MinMaxInfo
{
public Point PointReserved;
public Point PointMaxSize;
public Point PointMaxPosition;
public Point PointMinTrackSize;
public Point PointMaxTrackSize;
}
private delegate nint WndProcDelegate(nint hWnd, uint msg, nuint wParam, nint lParam);
[DllImport("user32.dll", EntryPoint = "SetWindowLongPtrW", SetLastError = true)]
private static extern nint SetWindowLongPtr(nint hWnd, int nIndex, nint dwNewLong);
[DllImport("user32.dll", EntryPoint = "CallWindowProcW", SetLastError = true)]
private static extern nint CallWindowProc(nint lpPrevWndFunc, nint hWnd, uint msg, nuint wParam, nint lParam);
[DllImport("user32.dll", SetLastError = true)]
[return: MarshalAs(UnmanagedType.Bool)]
private static extern bool ShowWindow(nint hWnd, int nCmdShow);
[DllImport("user32.dll", SetLastError = true)]
[return: MarshalAs(UnmanagedType.Bool)]
private static extern bool SetForegroundWindow(nint hWnd);
}