数据网格文本对齐
我想知道是否有人有一种简单的方法可以使 WPF 数据网格中的文本居中对齐。我让数据网格工作得很好,但正确的文本对齐方式让我困扰。我仔细看了一些,并下载了 wpftoolkit,但这些示例要么不起作用,要么给我一个编译错误。我确实将对 wpftoolkit 的引用添加到我的项目中。任何帮助将不胜感激。谢谢,
数据网格的xaml如下
<WpfToolkit:DataGrid AutoGenerateColumns="True" Margin="15,15,10,65" Name="DG1" CanUserReorderColumns="False" />
I was wondering if anyone had an easy way to get the text in a WPF data grid to be center aligned. I got the data grid to work just fine, but the right text alignment bothered me. I goggled some, and downloaded the wpftoolkit, but the examples either do not work, or give me a compile error. I did add the reference to the wpftoolkit to my project. Any help would be appreciated. Thank you
the xaml for the data grid is as follows
<WpfToolkit:DataGrid AutoGenerateColumns="True" Margin="15,15,10,65" Name="DG1" CanUserReorderColumns="False" />
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您设置 Block.TextAlignment将属性设置为 DataGrid 上的 Center,它将由 DataGridTextColumns 中使用的 TextBlocks 和 TextBox 继承,并将文本居中:
如果要对齐单元格中的文本,而不是标题或网格中其他位置的文本,则可以设置该属性在 DataGridCell 上使用 CellStyle:
If you set the Block.TextAlignment property to Center on the DataGrid, it will be inherited by the TextBlocks and TextBoxes used in DataGridTextColumns and will center the text:
If you want to align text in the cells but not in the headers or elsewhere in the Grid, you can set the property on the DataGridCell using CellStyle: