您好,登錄后才能下訂單哦!
最近弄了弄WPF,最簡單的,一個窗體,里面加個webbrowser
但是如果用AllowTransparency="True" WindowStyle="None"的話,的確窗體的邊框和原生按鈕去掉了
但是,webbrowser里打開的頁面也看不見了
看了一圈網上的解決辦法,基本上都是那個WebBrowserOverlay,真是個大坑,一點不好用
所以找到另一個辦法,就是用SetWindowLong來解決,當然AllowTransparency跟WindowSytle都要去掉
首先建一個類,比如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; //窗體中的其它語句 }
這樣就完美實現了外窗口無原生按鈕(最大最小關閉),無邊框,一點邊框都沒有。
備忘用
當當當當當!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。