-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCompositingWindow.cs
625 lines (533 loc) · 26.3 KB
/
CompositingWindow.cs
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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Interop;
using System.Timers;
using System.ComponentModel;
using Start9.UI.Wpf.Statics;
using System.Windows.Media;
namespace Start9.UI.Wpf.Windows
{
public partial class CompositingWindow : Window
{
public IntPtr Handle;
/*NativeMethods.DWM_BLURBEHIND _blurInfo = new NativeMethods.DWM_BLURBEHIND();
NativeMethods.DWM_BLURBEHIND _unblurInfo = new NativeMethods.DWM_BLURBEHIND();*/
/*{
fEnable = false
};*/
NativeMethods.DWM_BLURBEHIND _blurInfo;
NativeMethods.DWM_BLURBEHIND _unblurInfo;
public bool IsGlassAvailable
{
get => (bool)GetValue(IsGlassAvailableProperty);
set => SetValue(IsGlassAvailableProperty, value);
}
public static readonly DependencyProperty IsGlassAvailableProperty =
DependencyProperty.Register("IsGlassAvailable", typeof(bool), typeof(CompositingWindow), new FrameworkPropertyMetadata(false, OnCompositionStatePropertyChangedCallback));
public bool IgnorePeek
{
get => (bool)GetValue(IgnorePeekProperty);
set => SetValue(IgnorePeekProperty, value);
}
public static readonly DependencyProperty IgnorePeekProperty =
DependencyProperty.Register("IgnorePeek", typeof(bool), typeof(CompositingWindow), new FrameworkPropertyMetadata(false, OnIgnorePeekChangedCallback));
internal static void OnIgnorePeekChangedCallback(object sender, DependencyPropertyChangedEventArgs e)
{
(sender as CompositingWindow).SetPeekState();
}
internal virtual void SetPeekState()
{
if (NativeMethods.DwmIsCompositionEnabled())
{
int peekValue = 0;
if (IgnorePeek)
peekValue = 1;
NativeMethods.DwmSetWindowAttribute(Handle, 12, ref peekValue, sizeof(int));
}
}
public enum WindowCompositionState
{
Alpha,
Glass,
Accent,
Acrylic
}
public WindowCompositionState CompositionState
{
get => (WindowCompositionState)GetValue(CompositionStateProperty);
set => SetValue(CompositionStateProperty, value);
}
public static readonly DependencyProperty CompositionStateProperty =
DependencyProperty.Register("CompositionState", typeof(WindowCompositionState), typeof(CompositingWindow), new FrameworkPropertyMetadata(WindowCompositionState.Alpha, OnCompositionStatePropertyChangedCallback));
public bool CanActivate
{
get => (bool)GetValue(CanActivateProperty);
set => SetValue(CanActivateProperty, value);
}
public static readonly DependencyProperty CanActivateProperty =
DependencyProperty.Register("CanActivate", typeof(bool), typeof(CompositingWindow), new FrameworkPropertyMetadata(true, OnCanActivatePropertyChangedCallback));
static void OnCanActivatePropertyChangedCallback(Object sender, DependencyPropertyChangedEventArgs e)
{
var win = sender as CompositingWindow;
if ((bool)e.NewValue)
NativeMethods.SetWindowLong(win.Handle, NativeMethods.GwlExstyle, NativeMethods.GetWindowLong(win.Handle, NativeMethods.GwlExstyle).ToInt32() & ~NativeMethods.WsExNoActivate);
else
NativeMethods.SetWindowLong(win.Handle, NativeMethods.GwlExstyle, NativeMethods.GetWindowLong(win.Handle, NativeMethods.GwlExstyle).ToInt32() & NativeMethods.WsExNoActivate);
}
public bool ShowInAltTab
{
get => (bool)GetValue(ShowInAltTabProperty);
set => SetValue(ShowInAltTabProperty, value);
}
public static readonly DependencyProperty ShowInAltTabProperty =
DependencyProperty.Register("ShowInAltTab", typeof(bool), typeof(CompositingWindow), new FrameworkPropertyMetadata(true, OnShowInAltTabPropertyChangedCallback));
internal static void OnShowInAltTabPropertyChangedCallback(Object sender, DependencyPropertyChangedEventArgs e)
{
UpdateShowInAltTabPropertyValue(sender as CompositingWindow);
}
static void UpdateShowInAltTabPropertyValue(CompositingWindow win)
{
int exStyle = NativeMethods.GetWindowLong(win.Handle, NativeMethods.GwlExstyle).ToInt32();
if (win.ShowInAltTab)
exStyle |= ~NativeMethods.WsExToolwindow;
//NativeMethods.SetWindowLong(win._handle, NativeMethods.GwlExstyle, NativeMethods.GetWindowLong(win._handle, NativeMethods.GwlExstyle).ToInt32() & ~NativeMethods.WsExToolwindow);
else
exStyle |= NativeMethods.WsExToolwindow;
//NativeMethods.SetWindowLong(win._handle, NativeMethods.GwlExstyle, NativeMethods.GetWindowLong(win._handle, NativeMethods.GwlExstyle).ToInt32() & NativeMethods.WsExToolwindow);
NativeMethods.SetWindowLong(win.Handle, NativeMethods.GwlExstyle, exStyle);
//Debug.WriteLine("win.ShowInAltTab: " + win.ShowInAltTab.ToString());
}
public bool IsWindowVisible
{
get => (bool)GetValue(IsWindowVisibleProperty);
set => SetValue(IsWindowVisibleProperty, value);
}
public static readonly DependencyProperty IsWindowVisibleProperty =
DependencyProperty.Register("IsWindowVisible", typeof(bool), typeof(CompositingWindow), new FrameworkPropertyMetadata(true));
public int HideTransitionDuration
{
get => (int)GetValue(HideTransitionDurationProperty);
set => SetValue(HideTransitionDurationProperty, value);
}
public static readonly DependencyProperty HideTransitionDurationProperty =
DependencyProperty.Register("HideTransitionDuration", typeof(int), typeof(CompositingWindow), new FrameworkPropertyMetadata(0));
static void OnCompositionStatePropertyChangedCallback(Object sender, DependencyPropertyChangedEventArgs e)
{
//Debug.WriteLine("CompositionState: " + (sender as CompositingWindow).CompositionState.ToString());
var win = sender as CompositingWindow;
win.SetCompositionState(win.CompositionState);
}
static CompositingWindow()
{
//BackgroundProperty.OverrideMetadata(typeof(CompositingWindow), new FrameworkPropertyMetadata(new System.Windows.Media.SolidColorBrush(System.Windows.Media.Colors.Transparent)));
//AllowsTransparencyProperty.OverrideMetadata(typeof(DecoratableWindow), new FrameworkPropertyMetadata(true));
}
public CompositingWindow()
{
base.WindowStyle = WindowStyle.None;
AllowsTransparency = false; //true;
/*System.Windows.Shell.WindowChrome.SetWindowChrome(this, new System.Windows.Shell.WindowChrome()// );
{
GlassFrameThickness = new Thickness(0),
ResizeBorderThickness = new Thickness(0),
CaptionHeight = 0,
CornerRadius = new CornerRadius(0),
UseAeroCaptionButtons = false
});*/
if (SystemState.FakeCompositionOff)
IsGlassAvailable = false;
else
{
if (Environment.OSVersion.Version >= new Version(6, 2, 8400, 0))
IsGlassAvailable = NativeMethods.DwmIsCompositionEnabled() && ((System.IO.File.Exists(@"C:\AeroGlass\aerohost.exe")) || (System.IO.File.Exists(Environment.ExpandEnvironmentVariables(@"%systemdrive%\AeroGlass\aerohost.exe"))));
else if (Environment.OSVersion.Version >= new Version(6, 0, 5112, 0))
IsGlassAvailable = NativeMethods.DwmIsCompositionEnabled();
else
IsGlassAvailable = false;
}
_blurInfo = new NativeMethods.DWM_BLURBEHIND()
{
dwFlags = NativeMethods.DWM_BB.Enable | NativeMethods.DWM_BB.BlurRegion | NativeMethods.DWM_BB.TransitionMaximized,
fEnable = true,
//hRgnBlur = IntPtr.Zero,
fTransitionOnMaximized = true
};
_unblurInfo = new NativeMethods.DWM_BLURBEHIND()
{
dwFlags = NativeMethods.DWM_BB.Enable | NativeMethods.DWM_BB.BlurRegion | NativeMethods.DWM_BB.TransitionMaximized,
fEnable = false,
hRgnBlur = IntPtr.Zero,
fTransitionOnMaximized = true
};
//base.WindowStyle = WindowStyle.None;
//base.AllowsTransparency = true;
StateChanged += CompositingWindow_StateChanged;
Loaded += CompositingWindow_Loaded;
/*StateChanged += (sneder, args) =>
{
SetCompositionState();
};*/
}
/*private static object CoerceAllowsTransparency(DependencyObject d, object value)
{
return (d as Window).GetValue(AllowsTransparencyProperty);
}*/
double _maxWidth = double.PositiveInfinity;
double _maxHeight = double.PositiveInfinity;
private void CompositingWindow_StateChanged(object sender, EventArgs e)
{
if (WindowState == WindowState.Maximized)
{
_maxWidth = MaxWidth;
_maxHeight = MaxHeight;
System.Windows.Forms.Screen s = System.Windows.Forms.Screen.FromHandle(Handle); //System.Windows.Forms.Screen.FromPoint(new System.Drawing.Point((int)SystemScaling.WpfUnitsToRealPixels(Left), (int)SystemScaling.WpfUnitsToRealPixels(Top)));
MaxWidth = s.WorkingArea.Width;
MaxHeight = s.WorkingArea.Height;
}
else
{
MaxWidth = _maxWidth;
MaxHeight = _maxHeight;
}
}
protected override void OnInitialized(EventArgs e)
{
base.OnInitialized(e);
Handle = new WindowInteropHelper(this).EnsureHandle();
NativeMethods.SetWindowLong(Handle, NativeMethods.GwlStyle, NativeMethods.GetWindowLong(Handle, NativeMethods.GwlStyle).ToInt32() & ~(0x00800000 | 0x00040000));
//NativeMethods.SetWindowLong(Handle, NativeMethods.GwlExstyle, NativeMethods.GetWindowLong(Handle, NativeMethods.GwlExstyle).ToInt32() & 0x00000020 & 0x00080000);
//System.Windows.Media.CompositionTarget =
//System.Windows.Media.RenderOptions.com
var source = HwndSource.FromHwnd(Handle); //PresentationSource.FromVisual(this) as HwndSource;
//source.ContentRendered += Source_ContentRendered;
source.CompositionTarget.BackgroundColor = System.Windows.Media.Colors.Transparent;
//source.CompositionTarget.RenderMode = RenderMode.Default;
//source.CompositionTarget
//System.Windows.Media.CompositionTarget.Rendering += CompositionTarget_Rendering;
//source.CompositionTarget.UsesPerPixelOpacity = true;
//source.UsesPerPixelOpacity = true;
SetCompositionState(CompositionState);
}
/*private void CompositionTarget_Rendering(object sender, EventArgs e)
{
throw new NotImplementedException();
}
private void Source_ContentRendered(object sender, EventArgs e)
{
throw new NotImplementedException();
}*/
/*HwndSourceParameters CreateHwndSourceParameters()
{
new HwndSourceParameters
}*/
private void CompositingWindow_Loaded(object sender, RoutedEventArgs e)
{
if (IsVisible)
{
IsWindowVisible = false;
Show();
}
if (!ShowInAltTab)
UpdateShowInAltTabPropertyValue(this);
SetPeekState();
Loaded -= CompositingWindow_Loaded;
}
new public void Show()
{
IsWindowVisible = true;
base.Show();
/*int interval = 0;
Timer timer = new Timer(1);
timer.Elapsed += (sneder, args) =>
{
Dispatcher.Invoke(new Action(() =>
{
if (interval < )
interval++;
else
{
base.Show();
timer.Stop();
}
}));
};*/
}
new public void Hide()
{
IsWindowVisible = false;
int interval = 0;
Timer timer = new Timer(1);
timer.Elapsed += (sneder, args) =>
{
Dispatcher.Invoke(new Action(() =>
{
if (interval >= HideTransitionDuration)
{
timer.Stop();
base.Hide();
}
else
{
interval++;
}
}));
};
timer.Start();
}
protected override void OnSourceInitialized(EventArgs e)
{
base.OnSourceInitialized(e);
SetCompositionState(CompositionState);
}
bool _isClosingNow = false;
protected override void OnClosing(CancelEventArgs e)
{
base.OnClosing(e);
bool animate = false;
if (!(e.Cancel) & !_isClosingNow)
{
e.Cancel = true;
_isClosingNow = true;
animate = true;
//Debug.WriteLine("doing the thing");
}
if (animate == true)
{
IsWindowVisible = false;
int interval = 0;
Timer timer = new Timer(1);
timer.Elapsed += (sneder, args) =>
{
Dispatcher.Invoke(new Action(() =>
{
if (interval >= HideTransitionDuration)
{
base.Close();
timer.Stop();
}
else
{
interval++;
//Debug.WriteLine("interval: " + interval);
}
}));
};
timer.Start();
}
}
void ClearCompositionState()
{
if (NativeMethods.DwmIsCompositionEnabled())
{
NativeMethods.DwmEnableBlurBehindWindow(Handle, ref _unblurInfo);
if (Environment.OSVersion.Version >= new Version(10, 0, 17134, 0))
{
var accent = new NativeMethods.AccentPolicy();
var accentStructSize = Marshal.SizeOf(accent);
accent.GradientColor = (0x990000 << 24) | (0x990000 /* BGR */ & 0xFFFFFF);
accent.AccentState = NativeMethods.AccentState.ACCENT_DISABLED;
var accentPtr = Marshal.AllocHGlobal(accentStructSize);
Marshal.StructureToPtr(accent, accentPtr, false);
var data = new NativeMethods.WindowCompositionAttributeData
{
Attribute = NativeMethods.WindowCompositionAttribute.WCA_ACCENT_POLICY,
SizeOfData = accentStructSize,
Data = accentPtr
};
NativeMethods.SetWindowCompositionAttribute(Handle, ref data);
Marshal.FreeHGlobal(accentPtr);
}
else if (Environment.OSVersion.Version >= new Version(6, 2, 9200, 0))
{
var accent = new NativeMethods.AccentPolicy();
var accentStructSize = Marshal.SizeOf(accent);
accent.AccentState = NativeMethods.AccentState.ACCENT_DISABLED;
accent.AccentFlags = 0;
accent.GradientColor = 0;
accent.AnimationId = 0;
var accentPtr = Marshal.AllocHGlobal(accentStructSize);
Marshal.StructureToPtr(accent, accentPtr, false);
var data = new NativeMethods.WindowCompositionAttributeData
{
Attribute = NativeMethods.WindowCompositionAttribute.WCA_ACCENT_POLICY,
SizeOfData = accentStructSize,
Data = accentPtr
};
NativeMethods.SetWindowCompositionAttribute(Handle, ref data);
Marshal.FreeHGlobal(accentPtr);
}
}
}
void SetCompositionState()
{
if (CompositionState != WindowCompositionState.Alpha)
SetCompositionState(CompositionState);
else
ClearCompositionState();
}
void SetCompositionState(WindowCompositionState targetState)
{
if (NativeMethods.DwmIsCompositionEnabled())
{
ClearCompositionState();
if (targetState == WindowCompositionState.Glass)
{
if (new Version(10, 0, 16299, 0) <= Environment.OSVersion.Version)
{
var accent = new NativeMethods.AccentPolicy();
var accentStructSize = Marshal.SizeOf(accent);
accent.AccentState = NativeMethods.AccentState.ACCENT_ENABLE_BLURBEHIND;
var accentPtr = Marshal.AllocHGlobal(accentStructSize);
Marshal.StructureToPtr(accent, accentPtr, false);
var data = new NativeMethods.WindowCompositionAttributeData
{
Attribute = NativeMethods.WindowCompositionAttribute.WCA_ACCENT_POLICY,
SizeOfData = accentStructSize,
Data = accentPtr
};
NativeMethods.SetWindowCompositionAttribute(Handle, ref data);
Marshal.FreeHGlobal(accentPtr);
}
else if (Environment.OSVersion.Version.Major >= 10)
{
var accent = new NativeMethods.AccentPolicy();
var accentStructSize = Marshal.SizeOf(accent);
accent.GradientColor = (0x990000 << 24) | (0x990000 /* BGR */ & 0xFFFFFF);
accent.AccentState = NativeMethods.AccentState.ACCENT_ENABLE_BLURBEHIND;
var accentPtr = Marshal.AllocHGlobal(accentStructSize);
Marshal.StructureToPtr(accent, accentPtr, false);
var data = new NativeMethods.WindowCompositionAttributeData
{
Attribute = NativeMethods.WindowCompositionAttribute.WCA_ACCENT_POLICY,
SizeOfData = accentStructSize,
Data = accentPtr
};
NativeMethods.SetWindowCompositionAttribute(Handle, ref data);
Marshal.FreeHGlobal(accentPtr);
}
else //TODO: Figure something out for unmodified Windows 8.x
{
//HwndSource.FromHwnd(_handle).CompositionTarget.BackgroundColor = System.Windows.Media.Colors.Transparent;
IntPtr windowRegion = IntPtr.Zero;
if (NativeMethods.GetWindowRect(Handle, out NativeMethods.RECT rect))
{
//windowRegion = NativeMethods.CreateRectRgn(0, 0, rect.Right - rect.Left, rect.Bottom - rect.Top);
windowRegion = NativeMethods.CreateRectRgn(0, 0, (int)(SystemScaling.WpfUnitsToRealPixels(ActualWidth)), (int)(SystemScaling.WpfUnitsToRealPixels(ActualHeight)));
_blurInfo.hRgnBlur = windowRegion;
NativeMethods.DwmEnableBlurBehindWindow(Handle, ref _blurInfo);
}
/*Int32 refValue = (Int32)NativeMethods.DwmNCRenderingPolicy.Enabled;
NativeMethods.DwmSetWindowAttribute(_handle, (Int32)NativeMethods.DwmWindowAttribute.NCRenderingPolicy, ref refValue, sizeof(Int32));
NativeMethods.MARGINS margins = new NativeMethods.MARGINS()
{
leftWidth = -1,
rightWidth = -1,
topHeight = -1,
bottomHeight = -1
};
NativeMethods.DwmExtendFrameIntoClientArea(_handle, ref margins);*/
}
}
else if (targetState == WindowCompositionState.Accent)
{
if (Environment.OSVersion.Version >= new Version(10, 0, 17134, 0))
{
var accent = new NativeMethods.AccentPolicy();
var accentStructSize = Marshal.SizeOf(accent);
accent.GradientColor = (0x990000 << 24) | (0x990000 /* BGR */ & 0xFFFFFF);
accent.AccentState = NativeMethods.AccentState.ACCENT_ENABLE_GRADIENT;
var accentPtr = Marshal.AllocHGlobal(accentStructSize);
Marshal.StructureToPtr(accent, accentPtr, false);
var data = new NativeMethods.WindowCompositionAttributeData
{
Attribute = NativeMethods.WindowCompositionAttribute.WCA_ACCENT_POLICY,
SizeOfData = accentStructSize,
Data = accentPtr
};
NativeMethods.SetWindowCompositionAttribute(Handle, ref data);
Marshal.FreeHGlobal(accentPtr);
}
else if (Environment.OSVersion.Version >= new Version(6, 2, 9200, 0))
{
var accent = new NativeMethods.AccentPolicy();
var accentStructSize = Marshal.SizeOf(accent);
accent.AccentState = NativeMethods.AccentState.ACCENT_ENABLE_TRANSPARENTGRADIENT;
accent.AccentFlags = 0;// 0x20 | 0x40 | 0x80| 0x100;
accent.GradientColor = 0;
accent.AnimationId = 1;
var accentPtr = Marshal.AllocHGlobal(accentStructSize);
Marshal.StructureToPtr(accent, accentPtr, false);
var data = new NativeMethods.WindowCompositionAttributeData
{
Attribute = NativeMethods.WindowCompositionAttribute.WCA_ACCENT_POLICY,
SizeOfData = accentStructSize,
Data = accentPtr
};
NativeMethods.SetWindowCompositionAttribute(Handle, ref data);
Marshal.FreeHGlobal(accentPtr);
}
else //TODO: Figure something out for Windows 7
{
}
}
else if (targetState == WindowCompositionState.Acrylic)
{
if (Environment.OSVersion.Version >= new Version(10, 0, 17134, 0))
{
var accent = new NativeMethods.AccentPolicy();
var accentStructSize = Marshal.SizeOf(accent);
accent.GradientColor = (0x990000 << 24) | (0x990000 /* BGR */ & 0xFFFFFF);
accent.AccentState = NativeMethods.AccentState.ACCENT_ENABLE_BLURBEHIND;
var accentPtr = Marshal.AllocHGlobal(accentStructSize);
Marshal.StructureToPtr(accent, accentPtr, false);
var data = new NativeMethods.WindowCompositionAttributeData
{
Attribute = NativeMethods.WindowCompositionAttribute.WCA_ACCENT_POLICY,
SizeOfData = accentStructSize,
Data = accentPtr
};
NativeMethods.SetWindowCompositionAttribute(Handle, ref data);
Marshal.FreeHGlobal(accentPtr);
}
else //TODO: Figure something out for older versions of Windows
{
}
}
else
{
Debug.WriteLine("ALPHA");
NativeMethods.DwmEnableBlurBehindWindow(Handle, ref _unblurInfo);
if (Environment.OSVersion.Version >= new Version(6, 2, 9200, 0))
{
var accent = new NativeMethods.AccentPolicy();
var accentStructSize = Marshal.SizeOf(accent);
//accent.GradientColor = (0x990000 << 24) | (0x990000 /* BGR */ & 0xFFFFFF);
accent.AccentState = NativeMethods.AccentState.ACCENT_ENABLE_BLURBEHIND;
var accentPtr = Marshal.AllocHGlobal(accentStructSize);
Marshal.StructureToPtr(accent, accentPtr, false);
var data = new NativeMethods.WindowCompositionAttributeData
{
Attribute = NativeMethods.WindowCompositionAttribute.WCA_ACCENT_POLICY,
SizeOfData = accentStructSize,
Data = accentPtr
};
NativeMethods.SetWindowCompositionAttribute(Handle, ref data);
Marshal.FreeHGlobal(accentPtr);
}
}
}
}
protected override void OnRenderSizeChanged(SizeChangedInfo sizeInfo)
{
base.OnRenderSizeChanged(sizeInfo);
if (CompositionState != WindowCompositionState.Alpha)
SetCompositionState();
}
}
}