我在 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;
}
下面的屏幕截图显示了覆盖。请帮忙!!