0

以下は、ウェブブラウザをポップアップコントロールに追加するために使用しているコードスニペットですが、動作していないようです。

       Popup codePopup = new Popup();
        StackPanel test = new StackPanel();
        WebBrowser wb1 = new WebBrowser();
        wb1.Navigated += wb1_Navigated;
        wb1.Navigate(new Uri(@"http://www.google.com"));
        test.Children.Add(wb1);
        test.Height = Application.Current.Host.Content.ActualHeight;
        test.Width = Application.Current.Host.Content.ActualWidth;
        codePopup.Child = test;
        this.LayoutRoot.Children.Add(codePopup);
        codePopup.IsOpen = true;
4

1 に答える 1

1

Web ブラウザー コントロールの高さと幅を設定する必要があります。

于 2013-10-07T10:13:34.833 に答える