Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
フォームShowInTaskbarプロパティを変更すると、新しいハンドルが作成され、webview(awesomium)どういうわけか空になります。以前の状態に戻す方法はありますか? 前もって感謝します。
ShowInTaskbar
webview(awesomium)
このバグが発生した場合、webview に新しいハンドルを提供することで修正できます。
this.Controls.Remove(webPanel); webPanel = new Panel(); this.Controls.Add(webPanel); webView.ParentWindow = webPanel.Handle; resize(); return;