WPF 创建一个先垂直然后水平滚动的项目列表
我该如何创建一个控件,该控件的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将垂直方向的
WrapPanel
封装在ScrollViewer
中,并将VerticalScrollbarVisibility
设置为Disabled
。将其粘贴到 Kaxaml 中,您将看到:
Enclose a
WrapPanel
with vertical orientation within aScrollViewer
withVerticalScrollbarVisibility
set toDisabled
.Paste this into Kaxaml and you'll see:
对我来说听起来很像 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