WPF 创建一个先垂直然后水平滚动的项目列表

发布于 2024-08-24 04:02:45 字数 183 浏览 8 评论 0原文

我该如何创建一个控件,该控件的 item 中的项目垂直列出,但仅限于控件的高度,然后从第二列的顶部开始?

有点像 Windows 资源管理器的外观和感觉。

我目前正在使用 WrapPanel,但我不知道如何使其水平滚动...

非常感谢这里的任何帮助

干杯, 标记

How can I go about creating a control that has items in item that list vertically, but only to the height of the control, then start at the top of the second column?

Sort of like the windows explorer look and feel.

I am using a WrapPanel at the moment, but I cannot figure out how to make it scroll horizontally...

Any help here is greatly appreciated

Cheers,
Mark

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

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

发布评论

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

评论(2

妳是的陽光 2024-08-31 04:02:45

将垂直方向的 WrapPanel 封装在 ScrollViewer 中,并将 VerticalScrollbarVisibility 设置为 Disabled

将其粘贴到 Kaxaml 中,您将看到:

<Page
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  <Page.Resources>
    <Style TargetType="{x:Type Button}">
      <Style.Setters>
        <Setter Property="Width" Value="50"/>
        <Setter Property="Height" Value="50"/>
      </Style.Setters>
    </Style>
  </Page.Resources>
  <Grid Margin="200, 100">
    <ScrollViewer VerticalScrollBarVisibility="Disabled" HorizontalScrollBarVisibility="Visible" MaxWidth="200">
    <WrapPanel Orientation="Vertical">
      <Button/>
      <Button/>
      <Button/>
      <Button/>
      <Button/>
      <Button/>
      <Button/>
      <Button/>
      <Button/>
    </WrapPanel>
    </ScrollViewer>
  </Grid>
</Page>

Enclose a WrapPanel with vertical orientation within a ScrollViewer with VerticalScrollbarVisibility set to Disabled.

Paste this into Kaxaml and you'll see:

<Page
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  <Page.Resources>
    <Style TargetType="{x:Type Button}">
      <Style.Setters>
        <Setter Property="Width" Value="50"/>
        <Setter Property="Height" Value="50"/>
      </Style.Setters>
    </Style>
  </Page.Resources>
  <Grid Margin="200, 100">
    <ScrollViewer VerticalScrollBarVisibility="Disabled" HorizontalScrollBarVisibility="Visible" MaxWidth="200">
    <WrapPanel Orientation="Vertical">
      <Button/>
      <Button/>
      <Button/>
      <Button/>
      <Button/>
      <Button/>
      <Button/>
      <Button/>
      <Button/>
    </WrapPanel>
    </ScrollViewer>
  </Grid>
</Page>
嘦怹 2024-08-31 04:02:45

对我来说听起来很像 UniformGrid 或 WrapPanel
检查这个博客,他有一些关于内置布局面板的不错的演示

Sounds alot like a UniformGrid or a WrapPanel to me
check this blog, he has some nice demos of the built-in layout panels

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