码迷,mamicode.com
首页 > Windows程序 > 详细

WPF去边框与webbrowser的冲突

时间:2017-01-05 21:22:22      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:class   public   com   handle   component   tle   最大   extern   aml   

首先建一个类,比如NativeMethods.cs

class NativeMethods{
    public const int WS_CAPTION=0x00C0000;
    public const int WS_BORDER=0x00800000;
    public const int WS_DLGFRAME=0x00400000;
    public const int GWL_STYLE=-16;
    [DllImport("user32", EntryPoint="GetWindowLong")]
    public static extern int GetWindowLong(IntPtr handle, int sytle);
    [DllImport("user32", EntryPoint="SetWindowLong")]
    public static extern int SetWindowLong(IntPtr handle, int oldStyle, int new Style);
}

然后在你的窗体代码中,比如MainWindow.xaml.cs

public partial class MainWindow : Window{
    IntPtr hwnd=new System.Windows.Interop.WindowInteropHelper(this).Handle;
    int oldStyle=NativeMethods.GetWindowLong(hwnd,NativeMethods.GWL_STYLE);
    NativeMethods.SetWindowLong(hwnd,NativeMethods.GWL_STYLE,oldStyle&~NativeMethods.WS_BORDER&~NativeMethods.WS_CAPTION&~NativeMethods.WS_DLGFRAME);
}

public MainWindow(){
    InitializeComponent();
    this.Loaded+=Window_Loaded;
    //窗体中的其它语句
}


这样就完美实现了外窗口无原生按钮(最大最小关闭),无边框,一点边框都没有。

WPF去边框与webbrowser的冲突

标签:class   public   com   handle   component   tle   最大   extern   aml   

原文地址:http://www.cnblogs.com/baiyangtree/p/6253703.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!