我正在使用以下代码启动浏览器:
Dim options = New HtmlPopupWindowOptions() With { _.Left = 0, _.Top = 0, _.Width = 800, _.Height = 1200, _.Scrollbars = True, _.Toolbar = True, _.Menubar = True, _.Resizeable = True _}
System.Windows.Browser.HtmlPage.PopupWindow(New Uri(Application.Current.Host.Source, path), "_blank", options)
浏览器无法调整大小,并且已禁用调整大小按钮。任何人都可以建议如何启用调整大小按钮。我在Silverlight应用程序中使用vb.net中的上述代码。