gpt4 book ai didi

c# - 在 DataGridView 中插入空行

转载 作者:行者123 更新时间:2023-12-02 13:56:06 30 4
gpt4 key购买 nike

我想在 DataGridView 中的行组之间引入图形分隔。

我有哪些选择: - 我应该引入一个空行吗? - 我应该使用边框和/或绘画方法吗?

最佳答案

这会增加指定[索引]处的行的下边框:

DataGridViewRow row = dataGridView1.Rows[Index];
row.DividerHeight = 1;

请注意DividerHeigth使用行的空间,因此如果将其设置为 10,它可以覆盖半行(对我来说,1 就足够了)。

还有DividerWidth属性来分隔列组。

关于c# - 在 DataGridView 中插入空行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18652240/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com