WPF DataGrid 单元格文本换行 - 设置为 NoWrap (False)
如何将 WPF DataGrid 中每个单元格的 TextWrapping 设置为“NoWrap”?我知道单元格本身没有“TextWrapping”属性,但我想在单元格内的控件上设置该属性。
我正在使用的 DataGrid 没有显式定义的列,它显示的结果集是动态的。
我正在寻找类似于以下链接中提供的答案的解决方案。但是,我不想显式覆盖单元格样式/模板并定义要使用的控件。相反,我想说,如果正在使用 TextBlock,请将其 TextWrapping 属性设置为 NoWrap。
How do I set the TextWrapping of every cell in a WPF DataGrid to "NoWrap"? I understand the Cell itself does not have a "TextWrapping" property, but I'd like to set the property on the control within the cell.
The DataGrid I am working with does not have columns defined explicitly, the result set it is displaying is dynamic.
I am looking for a solution similar to the answers provided in the links below. However I do not want to explicitly override the cell style/template and define the control to be used. Instead I would like to say, IF a TextBlock is being used, set its TextWrapping property to NoWrap.
WPF toolkit datagrid cell text wrapping
How do I enable text wrapping on all column headers?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 DataGrid 的资源中,您可以为 TextBlock 指定替代默认样式。这应该可以满足您的要求(“如果正在使用 TextBlock,请将其 TextWrapping 属性设置为 NoWrap”)。如果 TextBlock 明确指定要使用的不同样式,则这将不起作用。
(未经测试,因为我现在没有可用的 Visual Studio。)
In the resources of your DataGrid, you can specify an alternative default style for TextBlocks. This should do what you require ("IF a TextBlock is being used, set its TextWrapping property to NoWrap"). This won't work if the TextBlocks explicitly specify a different style to be used.
(Untested, since I do not have Visual Studio available right now.)