如何调整 WPF 网格中的单元格大小
构建网格并向其添加行和列后,如何修改每个单元格的尺寸。我无法找到任何可以帮助我实现这一目标的财产。
作为补充说明,我将 TextBlock 添加到每个单元格。
After constructing a Grid and adding Rows and Columns to it, how can modify the dimension of each Cell. I am not able to locate any property that would help me to achieve this.
As additional note, I am adding TextBlocks to each of the cell.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在 ColumnDefinition 和 RowDefinition 标记中更改列宽和行高,或者如果您希望单元格排列不太均匀,您可以设置每个单元格的 ColumnSpan(可能是 ColSpan,已经有一段时间了!)和 RowSpan 属性单元格来创建跨越多行或多列的单元格。
You can change the column width and row height within your ColumnDefinition and RowDefinition tags, or if you wish to have the cells in a less uniform arrangement you can set the ColumnSpan (might be ColSpan, it's been a while!) and RowSpan properties of each cell to create cells that span more than one row or column.
您想在运行时修改单元尺寸吗?如果是,请查看 GridSplitter。
Do you want modify cells dimensions at runtime? If yes take a look at GridSplitter.