滚动查看器中的 Web 浏览器

发布于 2024-10-21 06:17:48 字数 927 浏览 4 评论 0原文

我有一个简单的 wpf 窗口,其中有一个 Scrollviewer 和一个 Web 浏览器。

<Window x:Class="WpfApplication9.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="MainWindow" Height="350" Width="525" Background="Gainsboro">
<Grid>
    <Grid.ColumnDefinitions>
        <ColumnDefinition Width="100"/>
        <ColumnDefinition Width="300"/>
    </Grid.ColumnDefinitions>
    <ScrollViewer Width="300" Grid.Column="1" Height="200" HorizontalScrollBarVisibility="Auto">
        <WebBrowser  Width="400" Margin="2" Source="C:\Users\Public\Pictures\Sample Pictures\Chrysanthemum.jpg" />
    </ScrollViewer>
</Grid>

因为我给浏览器指定的宽度大于滚动查看器的宽度 我希望滚动查看器显示水平滚动条并在滚动查看器中显示网络浏览器。

但是当我水平滚动到右侧时,网络浏览器移出滚动查看器。

我做错了什么吗?或者有什么解决方法吗?

非常感谢任何帮助。谢谢。

I have a simple wpf window which has a Scrollviewer and inside it a Web Browser.

<Window x:Class="WpfApplication9.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="MainWindow" Height="350" Width="525" Background="Gainsboro">
<Grid>
    <Grid.ColumnDefinitions>
        <ColumnDefinition Width="100"/>
        <ColumnDefinition Width="300"/>
    </Grid.ColumnDefinitions>
    <ScrollViewer Width="300" Grid.Column="1" Height="200" HorizontalScrollBarVisibility="Auto">
        <WebBrowser  Width="400" Margin="2" Source="C:\Users\Public\Pictures\Sample Pictures\Chrysanthemum.jpg" />
    </ScrollViewer>
</Grid>

As i have given a Width to the browser which is more than the width of the Scroll Viewer
i expect the scroll viewer to show the horizontal scroll bar and show the web browser within the Scroll Viewer.

But when i horizontally scroll to the right , the web browser moves out of the scroll viwer.

Am i doing something wrong? Or is there any workaround for this?

Any help is highly appreciated. Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

み零 2024-10-28 06:17:48

WPF Web 浏览器控件实际上是一个 ActiveX 组件,因此它与框架的其余部分不能很好地配合。据我所知,浏览器会粘贴在您的应用程序之上,无论底层容器如何,您都将始终看到所有内容。

您可以尝试使用 WPF Chromium 之类的东西。

The WPF web browser control is actually an ActiveX component so it doesn't quite play nice with the rest of the framework. As far as I can tell, the browser gets pasted on top of your application and you will always see all of it, regardless of the underlying container.

You could try to use something like WPF Chromium instead.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文