如何调整 WPF 网格中的单元格大小

发布于 2024-11-08 19:32:01 字数 94 浏览 0 评论 0原文

构建网格并向其添加行和列后,如何修改每个单元格的尺寸。我无法找到任何可以帮助我实现这一目标的财产。

作为补充说明,我将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

凌乱心跳 2024-11-15 19:32:01

您可以在 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.

北凤男飞 2024-11-15 19:32:01

您想在运行时修改单元尺寸吗?如果是,请查看 GridSplitter

Do you want modify cells dimensions at runtime? If yes take a look at GridSplitter.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文