WPF Aero Glass Window
用法
- Win7 DwmSetWindowAttribute function
- Win10 SetWindowCompositionAttribute
- 代码
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Runtime.InteropServices;
5 using System.Text;
6 using System.Threading.Tasks;
7 using System.Windows;
8 using System.Windows.Interop;
9
10 namespace AeroWindow
11 {
12 internal static class NativeMethods
13 {
14 [DllImport("user32.dll")]
15 internal static extern int SetWindowCompositionAttribute(IntPtr hwnd, ref WindowCompositionAttribData data);
16
17 [StructLayout(LayoutKind.Sequential)]
18 internal struct WindowCompositionAttribData
19 {
20 public WindowCompositionAttribute Attribute;
21 public IntPtr Data;
22 public int SizeOfData;
23 }
24
25 [StructLayout(LayoutKind.Sequential)]
26 internal struct AccentPolicy
27 {
28 public AccentState AccentState;
29 public AccentFlags AccentFlags;
30 public int GradientColor;
31 public int AnimationId;
32 }
33
34 [Flags]
35 internal enum AccentFlags
36 {
37 // ...
38 DrawLeftBorder = 0x20,
39 DrawTopBorder = 0x40,
40 DrawRightBorder = 0x80,
41 DrawBottomBorder = 0x100,
42 DrawAllBorders = (DrawLeftBorder | DrawTopBorder | DrawRightBorder | DrawBottomBorder)
43 // ...
44 }
45
46 internal enum WindowCompositionAttribute
47 {
48 // ...
49 WCA_ACCENT_POLICY = 19
50 // ...
51 }
52
53 internal enum AccentState
54 {
55 ACCENT_DISABLED = 0,
56 ACCENT_ENABLE_GRADIENT = 1,
57 ACCENT_ENABLE_TRANSPARENTGRADIENT = 2,
58 ACCENT_ENABLE_BLURBEHIND = 3,
59 ACCENT_INVALID_STATE = 4
60 }
61
62 public static void EnableBlur(this Window window)
63 {
64 if (SystemParameters.HighContrast)
65 {
66 return; // Blur is not useful in high contrast mode
67 }
68 SetAccentPolicy(window, NativeMethods.AccentState.ACCENT_ENABLE_BLURBEHIND);
69 }
70
71
72 public static void DisableBlur(this Window window)
73 {
74 SetAccentPolicy(window, NativeMethods.AccentState.ACCENT_DISABLED);
75 }
76
77 private static void SetAccentPolicy(Window window, NativeMethods.AccentState accentState)
78 {
79 var windowHelper = new WindowInteropHelper(window);
80 var accent = new NativeMethods.AccentPolicy
81 {
82 AccentState = accentState,
83 AccentFlags = GetAccentFlagsForTaskbarPosition(),
84 AnimationId = 2
85 };
86 var accentStructSize = Marshal.SizeOf(accent);
87 var accentPtr = Marshal.AllocHGlobal(accentStructSize);
88 Marshal.StructureToPtr(accent, accentPtr, false);
89 var data = new NativeMethods.WindowCompositionAttribData
90 {
91 Attribute = NativeMethods.WindowCompositionAttribute.WCA_ACCENT_POLICY,
92 SizeOfData = accentStructSize,
93 Data = accentPtr
94 };
95 NativeMethods.SetWindowCompositionAttribute(windowHelper.Handle, ref data);
96 Marshal.FreeHGlobal(accentPtr);
97 }
98
99 private static NativeMethods.AccentFlags GetAccentFlagsForTaskbarPosition()
100 {
101 return NativeMethods.AccentFlags.DrawAllBorders;
102 }
103 }
104 }1 public MainWindow()
2 {
3 RoutedEventHandler handler = null;
4 handler = (s, e) =>
5 {
6 Loaded -= handler;
7 this.EnableBlur();
8 };
9 Loaded += handler;
10
11 InitializeComponent();
12 }1 <Window x:Class="AeroWindow.MainWindow"
2 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4 xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
5 xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
6 xmlns:shell="http://schemas.microsoft.com/winfx/2006/xaml/presentation/shell"
7 xmlns:local="clr-namespace:AeroWindow"
8 mc:Ignorable="d"
9 Background="#44E6ECF0"
10 Title="MainWindow" Height="600" Width="800" >
11 <shell:WindowChrome.WindowChrome>
12 <shell:WindowChrome GlassFrameThickness="1" UseAeroCaptionButtons="False" NonClientFrameEdges="None" CornerRadius="10" CaptionHeight="600" />
13 </shell:WindowChrome.WindowChrome>
14 <Grid/>
15 </Window>
- 效果

WPF Aero Glass Window的更多相关文章
- Windows 7 扩展玻璃效果(Aero Glass)
转自:http://www.cnblogs.com/gnielee/archive/2010/10/04/windows7-extend-aero-glass.html Windows 7 操作系统默 ...
- 【转】MFC 迅雷七窗体特效,使用DWM实现Aero Glass效果
从Windows Vista开始,Aero Glass效果被应用在了Home Premium以上的系统中(Home Basic不具有该效果).这种效果是由DWM(Desktop Window Mana ...
- 窗口玻璃特效,半透明窗口,使用DWM实现Aero Glass效果
转自:http://blog.csdn.net/ntwilford/article/details/5656633 从Windows Vista开始,Aero Glass效果被应用在了Home Pre ...
- C# WPF 多个window 相互覆盖的次序控制 不用topmost
原文:C# WPF 多个window 相互覆盖的次序控制 不用topmost WindowInteropHelper mianHanel = new WindowInteropHelper(Mai ...
- WPF 不要给 Window 类设置变换矩阵(分析篇):System.InvalidOperationException: 转换不可逆。
原文:WPF 不要给 Window 类设置变换矩阵(分析篇):System.InvalidOperationException: 转换不可逆. 最近总是收到一个异常 "System.Inva ...
- WPF 不要给 Window 类设置变换矩阵(应用篇)
原文:WPF 不要给 Window 类设置变换矩阵(应用篇) WPF 的 Window 类是不允许设置变换矩阵的.不过,总会有小伙伴为了能够设置一下试图绕过一些验证机制. 不要试图绕过,因为你会遇到更 ...
- WPF直接用Window.Close直接关闭窗口导致不能完全退出的问题
前几天我在CSDN扔了一个问题,基本描述一下:写了一段这样的代码,来实现获取Control的template,却发现一个这样的问题,就是当我打开了一个window以后,手动调用Close(),窗口的确 ...
- WPF 中保存 window(窗口)或者canvas成图片
最近需要用到这个功能,搜了一下不少代码有问题 ,找到一个效果比较好的,支持多级子元素 记一下. private void button_save_window_Click(object sender, ...
- wpf 只在window是ShowDialog打开时才设置DialogResult
//only set DialogResult when window is ShowDialog before if(System.Windows.Interop.ComponentDispatch ...
随机推荐
- http协议头文件的控制信息(转)
通常HTTP消息包括客户机向服务器的请求消息和服务器向客户机的响应消息.这两种类型的消息由一个起始行,一个或者多个头域,一个只是头域结束的空行和可选的消息体组成.HTTP的头域包括通用头,请求头,响应 ...
- matlab 运行 AlexNet
0. alexnet 工具箱下载 下载地址:Neural Network Toolbox(TM) Model for AlexNet Network 需要先注册(十分简单),登陆,下载: 下载完成之后 ...
- WPF入门(三)->几何图形之不规则图形(PathGeometry)
原文:WPF入门(三)->几何图形之不规则图形(PathGeometry) 前面我们给大家介绍了LineGeometry,EllipseGeometry,CombinedGeometry等一些规 ...
- 基于RDP瘦客户机协议的简要说明
**************************************************************************************************** ...
- Android Studio 使用教程(二十五)之运行Android Studio工程
一.Android虚拟设备入口 上期我们使用了Android Studio创建了HeloWorld工程,要想运行该工程,首先需要一个Android虚拟设备来模拟Android程序的运行. 重新打开An ...
- Tcl package require Tk 出现没用的小方框
package require Tk wm withdraw . 当引用了tk的时候会出现一个tk的方框 , 下面那句话就是隐藏掉那个方框
- 狄拉克函数(Dirac delta function)
1. 定义 δ(x)={∞0if x=0if x≠0 这样定义的目的在于使如下的积分式成立: ∫∞−∞δ(x)dx=1 2. 重要性质 sifting property ∫∞−∞f(x)δ(x−μ)d ...
- 【转】mysql的SQL_NO_CACHE(在查询时不使用缓存)和sql_cache用法
转自:http://www.169it.com/article/5994930453423417575.html 为了测试sql语句的效率,有时候要不用缓存来查询. 使用 SELECT SQL_NO_ ...
- WPF的消息机制(一)- 让应用程序动起来
原文:WPF的消息机制(一)- 让应用程序动起来 版权声明:本文为博主原创文章,未经博主允许不得转载. https://blog.csdn.net/powertoolsteam/article/det ...
- HDU 5073 Galaxy(Anshan 2014)(数学推导,贪婪)
Galaxy Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 262144/262144 K (Java/Others) Total S ...