1

我在 Silverlight 中使用 WebBrowser 控件在 Silverlight 应用程序中显示 html 页面。我在 Silverlight 应用程序中有一个隐藏在此 HTML 页面后面的下拉菜单。如何使 HTML 页面留在 Silverlight 控件后面。这是 Xaml

<Usercontrol>
<Grid x:Name="LayoutRoot" Background="Transparent" SizeChanged="LayoutRoot_SizeChanged">
        <WebBrowser x:Name="HtmlHost"  /> 
  </Grid>

</UserControl>

private void LayoutRoot_SizeChanged(object sender, SizeChangedEventArgs e)
        {
            this.HtmlHost.Visibility = Visibility.Visible;
            LayoutRoot.Visibility = Visibility.Visible;
        }

下面的屏幕截图显示了覆盖。请帮忙!! 在此处输入图像描述

4

0 回答 0