摘要: 创建一个叫AeroGlass.cs 的类,代码如下: 1 using System; 2 using System.Runtime.InteropServices; 3 using System.Windows; 4 using System.Windows.Interop; 5 using System.Windows.Media; 6 7 [StructLayout(LayoutKind.Sequential)] 8 public struct MARGINS 9 {10 public MARGINS(Thickness t)11 {12 Left = (... 阅读全文
posted @ 2012-08-23 17:11 Lyghost 阅读(2251) 评论(0) 推荐(0) 编辑