我正在尝试使用DWM API在VB.NET 2010应用程序中使用Aero Glass查看我的表单,但是正如函数调用建议的那样,它将Frame的外观扩展到客户端区域,如果表单没有边框,那么什么都不会发生,形式将变得无形。那么,我可以在没有任何边框的情况下获得Aero玻璃...... ??
答案 0 :(得分:12)
正如您所说,DwmExtendFrameIntoClientArea
将窗口框架的透明玻璃效果直接扩展到其客户区域,这意味着如果您的表单FormBorderStyle
设置为“无”,您的窗口将会实际上是看不见的。
相反,您需要使用DwmEnableBlurBehindWindow
API,这会在窗口上启用玻璃模糊效果,而不需要框架/边框。它需要两个参数。第一个(hWnd
)是您希望应用模糊效果的表单的句柄。第二个(pBlurBehind
)是通过引用传递的结构,其中包含效果的数据或参数。
因此,您还必须定义DWM_BLURBEHIND
structure,它本身包含四个成员。第一个(dwFlags
)是constant values的按位组合,表示已设置此结构的哪些成员。第二个(fEnable
)表示您是要启用还是禁用模糊效果。第三个(hRgnBlur
)允许您指定客户区域中将应用模糊效果的特定区域;将其设置为Nothing
表示整个客户区域将具有模糊效果。第四个(fTransitionOnMaximized
)允许您指定表单的着色是否应该转换为与最大化窗口匹配。
以下是为了使用此功能而必须包含在代码中的最终API声明:
<StructLayout(LayoutKind.Sequential)> _
Private Structure DWM_BLURBEHIND
Public dwFlags As Integer
Public fEnable As Boolean
Public hRgnBlur As IntPtr
Public fTransitionOnMaximized As Boolean
End Structure
Private Const DWM_BB_ENABLE As Integer = &H1
Private Const DWM_BB_BLURREGION As Integer = &H2
Private Const DWM_BB_TRANSITIONONMAXIMIZED As Integer = &H4
<DllImport("dwmapi.dll", PreserveSig:=False)> _
Private Shared Sub DwmEnableBlurBehindWindow(ByVal hWnd As IntPtr, ByRef pBlurBehind As DWM_BLURBEHIND)
End Sub
然后这是一个如何在特定表单上调用此函数的简单示例:
Protected Overrides Sub OnLoad(ByVal e As System.EventArgs)
MyBase.OnLoad(e)
''#Set the form's border style to None
Me.FormBorderStyle = FormBorderStyle.None
''#Whatever region that you fill with black will become the glassy region
''# (in this example, the entire form becomes transparent)
Me.BackColor = Color.Black
''#Create and populate the blur-behind structure
Dim bb As DWM_BLURBEHIND
bb.dwFlags = DWM_BB_ENABLE
bb.fEnable = True
bb.hRgnBlur = Nothing
''#Enable the blur-behind effect
DwmEnableBlurBehindWindow(Me.Handle, bb)
End Sub
相反,如果您只想将模糊效果应用于表单的特定子区域,则需要为hRgnBlur
成员提供有效区域,并将DWM_BB_BLURREGION
标志添加到dwFlags
成员。
您可以使用Region.GetHrgn
method来获取要指定为hRgnBlur
成员的区域的句柄。例如,您可以使用以下代码代替上述代码:
Protected Overrides Sub OnLoad(ByVal e As System.EventArgs)
MyBase.OnLoad(e)
''#Set the form's border style to None
Me.FormBorderStyle = FormBorderStyle.None
''#Fill the entire form with black to make it appear transparent
Me.BackColor = Color.Black
''#Create a region corresponding to the area of the form you want to render as glass
Using g As Graphics = Me.CreateGraphics
Dim glassRect As New Rectangle(0, 0, 100, 150)
Using rgn As New Region(glassRect)
''#Create and populate the blur-behind structure
Dim bb As DWM_BLURBEHIND
bb.dwFlags = DWM_BB_ENABLE Or DWM_BB_BLURREGION
bb.fEnable = True
bb.hRgnBlur = rgn.GetHrgn(g)
''#Enable blur-behind effect
DwmEnableBlurBehindWindow(Me.Handle, bb)
End Using
End Using
End Sub
注意,即使指定一个特定的子区域来应用模糊效果,我仍然将整个表单的背景颜色设置为黑色?这将导致我们指定的区域呈现玻璃般的模糊效果,并且表单的其余部分显示为透明。当然,您可以将表单背景颜色的其余部分设置为您想要的任何颜色(尽管确保填充您想要显示为黑色的玻璃矩形,如前所述),但它将显示为部分透明,没有玻璃般的模糊效果。 MSDN解释了为什么会出现这种情况:
应用模糊效果时 到窗口的一个分区域, 使用窗口的alpha通道 对于非模糊区域。这个可以 导致意想不到的透明度 窗户的非模糊区域。 因此,申请时要小心 模糊对子区域的影响。
就我而言,这使得将此效果仅应用于窗体窗口的子区域相对毫无价值。在我看来它唯一可能有意义的是,如果你想将任意非矩形形状渲染为玻璃状,其余形状保持透明。