zoukankan      html  css  js  c++  java
  • wpf 透明效果 需要DwmApi.dll文件,然后定义一个函数去画Aero区域,从而实现整个窗口的Aero化。

    private void ExtendAeroGlass(Window window)
    {
    try
    {
    // 为WPF程序获取窗口句柄
    IntPtr mainWindowPtr = new WindowInteropHelper(window).Handle;
    HwndSource mainWindowSrc = HwndSource.FromHwnd(mainWindowPtr);
    mainWindowSrc.CompositionTarget.BackgroundColor = Colors.Transparent;

    // 设置Margins
    MARGINS margins = new MARGINS();

    // 扩展Aero Glass
    margins.cxLeftWidth = -1;
    margins.cxRightWidth = -1;
    margins.cyTopHeight = -1;
    margins.cyBottomHeight = -1;

    int hr = DwmExtendFrameIntoClientArea(mainWindowSrc.Handle, ref margins);
    if (hr < 0)
    {
    MessageBox.Show("DwmExtendFrameIntoClientArea Failed");
    }
    }
    catch (DllNotFoundException)
    {
    Application.Current.MainWindow.Background = Brushes.White;
    }
    }

    [StructLayout(LayoutKind.Sequential)]
    public struct MARGINS
    {
    public int cxLeftWidth;
    public int cxRightWidth;
    public int cyTopHeight;
    public int cyBottomHeight;
    };

    [DllImport("DwmApi.dll")]
    public static extern int DwmExtendFrameIntoClientArea(
    IntPtr hwnd,
    ref MARGINS pMarInset);

    至少证明我们还活着
  • 相关阅读:
    qt一些函数
    js时间字符串转时间戳
    golang学习之interface与其它类型转换
    golang学习之奇葩的time format
    windows下安装mongodb
    golang学习之struct
    golang学习之闭包
    js生成6位随机码
    golang学习之生成代码文档
    moment常用操作
  • 原文地址:https://www.cnblogs.com/pengde/p/5822010.html
Copyright © 2011-2022 走看看