溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

WPF去邊框與webbrowser的沖突

發(fā)布時(shí)間:2020-07-16 13:34:12 來源:網(wǎng)絡(luò) 閱讀:1707 作者:lreach 欄目:編程語言

最近弄了弄WPF,最簡單的,一個(gè)窗體,里面加個(gè)webbrowser

但是如果用AllowTransparency="True" WindowStyle="None"的話,的確窗體的邊框和原生按鈕去掉了

但是,webbrowser里打開的頁面也看不見了


看了一圈網(wǎng)上的解決辦法,基本上都是那個(gè)WebBrowserOverlay,真是個(gè)大坑,一點(diǎn)不好用


所以找到另一個(gè)辦法,就是用SetWindowLong來解決,當(dāng)然AllowTransparency跟WindowSytle都要去掉


首先建一個(gè)類,比如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;
    //窗體中的其它語句
}


這樣就完美實(shí)現(xiàn)了外窗口無原生按鈕(最大最小關(guān)閉),無邊框,一點(diǎn)邊框都沒有。

備忘用

當(dāng)當(dāng)當(dāng)當(dāng)當(dāng)!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI