DropShadow for WPF无边界窗口
发布时间:2020-05-22 12:13:17 所属栏目:Windows 来源:互联网
导读:我有一个WPF窗口,WindowStyle设置为none。有没有办法我可以强制这个窗口放下一个阴影(就像你在WindowStyle不是没有的时候)?我不想将AllowTransparency设置为true,因为它会影响性能。而且我也不想禁用硬件渲染(我读到透明度更好地禁用的地方)。 我已经写了
|
我有一个WPF窗口,WindowStyle设置为none。有没有办法我可以强制这个窗口放下一个阴影(就像你在WindowStyle不是没有的时候)?我不想将AllowTransparency设置为true,因为它会影响性能。而且我也不想禁用硬件渲染(我读到透明度更好地禁用的地方)。 我已经写了一个能够完成你想要的工具类:在无边框窗口上放置一个标准的阴影,但是将AllowTransparency设置为false。 你只需要调用DropShadowToWindow(Window窗口)方法。最好在窗口的构造函数InitializeComponent()之后进行此调用,但即使在窗口显示之后调用它也会起作用。 using System;
using System.Drawing.Printing;
using System.Runtime.InteropServices;
using System.Windows;
using System.Windows.Interop;
public static class DwmDropShadow
{
[DllImport("dwmapi.dll",PreserveSig = true)]
private static extern int DwmSetWindowAttribute(IntPtr hwnd,int attr,ref int attrValue,int attrSize);
[DllImport("dwmapi.dll")]
private static extern int DwmExtendFrameIntoClientArea(IntPtr hWnd,ref Margins pMarInset);
/// <summary>
/// Drops a standard shadow to a WPF Window,even if the window is borderless. Only works with DWM (Windows Vista or newer).
/// This method is much more efficient than setting AllowsTransparency to true and using the DropShadow effect,/// as AllowsTransparency involves a huge performance issue (hardware acceleration is turned off for all the window).
/// </summary>
/// <param name="window">Window to which the shadow will be applied</param>
public static void DropShadowToWindow(Window window)
{
if (!DropShadow(window))
{
window.SourceInitialized += new EventHandler(window_SourceInitialized);
}
}
private static void window_SourceInitialized(object sender,EventArgs e)
{
Window window = (Window)sender;
DropShadow(window);
window.SourceInitialized -= new EventHandler(window_SourceInitialized);
}
/// <summary>
/// The actual method that makes API calls to drop the shadow to the window
/// </summary>
/// <param name="window">Window to which the shadow will be applied</param>
/// <returns>True if the method succeeded,false if not</returns>
private static bool DropShadow(Window window)
{
try
{
WindowInteropHelper helper = new WindowInteropHelper(window);
int val = 2;
int ret1 = DwmSetWindowAttribute(helper.Handle,2,ref val,4);
if (ret1 == 0)
{
Margins m = new Margins { Bottom = 0,Left = 0,Right = 0,Top = 0 };
int ret2 = DwmExtendFrameIntoClientArea(helper.Handle,ref m);
return ret2 == 0;
}
else
{
return false;
}
}
catch (Exception ex)
{
// Probably dwmapi.dll not found (incompatible OS)
return false;
}
}
} (编辑:安卓应用网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
相关内容
- 在WINDOWS中设置计划任务执行PHP文件的方法
- 为什么有条件地包含direct.h或sys / stat.h基于_WIN32或__l
- Windows Python解释器在Ctrl C上退出
- 如何在东芝笔记本电脑和Windows 7上使用python进行文本到语
- 是否可以开发Windows,C,没有Visual Studio?
- 用批处理修复 win10 无法升级的问题
- Windows Phone 7 – 如何在WIndows Phone应用程序中访问Nav
- windows-phone-7 – WIndows Phone 7.1 SDK与Windows Phone
- 如何将文件从Windows主机复制到Docker容器
- 老机器XP Outlook Express 发大附件对方客户端收到解压失败
