如何设置WPF ListView行高?
我有一个显示一些文本记录的列表视图。 我需要增加行的高度(在触摸屏上工作,所以我需要更粗的行)而不增加字体大小。
这可能是相当微不足道的,但我没有任何线索,在谷歌上找不到太多。
任何帮助表示赞赏。
I've got a listView displaying a few text records. I need to increase the height of rows (working on a touch screen so I need thicker rows) without increasing the font size.
This is probably pretty trivial but I have no clue and can't find much on google.
Any help appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
或者您可以使用样式为所有列表视图设置它。 这里的范围是在一个窗口内:
Or you could use styles to set it for all listviews. Here scoped to within a window:
您可以使用
ItemContainerStyle
设置ListView
中所有ListViewItems
的高度:You can set the height of all
ListViewItems
in aListView
by usingItemContainerStyle
:在 XAML 中
在 C# 代码隐藏中
希望您能明白这一点。
In XAML
In C# Codebehind
Hope you getting the Idea.