ScrollViewer垂直滚动条预留空间

发布于 2024-12-12 14:26:34 字数 132 浏览 1 评论 0原文

在我的滚动查看器中,当没有可垂直滚动的内容时,由于垂直滚动条的可见性设置为“自动”,因此它不会显示。然而它仍然在滚动查看器的右侧保留了 20px 的空间。

当没有滚动条可见时,有没有办法让它释放这个空间?然后我的内容会拉伸以适应空间。

In my scrollviewer, when there is no content to scroll vertically, as the visibility of the vertical scrollbar is set to "auto" it doesnt display. However it still reserves say 20px space on the right of the scrollviewer.

Is there a way to make it release this space when there is no scrollbar visible? Then my content would stretch to fit the space.

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

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

发布评论

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

评论(1

挽你眉间 2024-12-19 14:26:34

您所描述的情况不应该发生,可能您使用的某些面板限制了布局,请考虑这个简单的示例:

<Window
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  <ScrollViewer HorizontalScrollBarVisibility="Auto" VerticalScrollBarVisibility="Auto">
      <Border  BorderThickness="1" BorderBrush="Red">
        <Button Width="200" Height="200" Content="!"/>
      </Border>
  </ScrollViewer>
</Window>

红色边框始终位于边缘,无论滚动条是否存在。

What you describe should not happen, possibly some panel you use is restricting the layout, consider this simple example:

<Window
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  <ScrollViewer HorizontalScrollBarVisibility="Auto" VerticalScrollBarVisibility="Auto">
      <Border  BorderThickness="1" BorderBrush="Red">
        <Button Width="200" Height="200" Content="!"/>
      </Border>
  </ScrollViewer>
</Window>

The red border is always at the edges, whether the scrollbars are there or not.

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