无法在运行时访问 RowSpan 属性?
当我将列表框放入 TableLayout 的单元格中时,它具有 ColumnSpan 和 RowSpan 的属性...但是当我转到代码并想说“ listBox1.RowSpan ”时,没有这样的属性:( 我想这样做是因为有时在我的程序中我希望这个列表框占据一个单元格,有时我希望它占据两个单元格,所以我该怎么做呢?
when I drop a Listbox in a cell of a TableLayout, it has the properties for ColumnSpan and RowSpan ... but when I go to the code and want to say " listBox1.RowSpan " there is not such a property :( I want to do this because sometimes in my program I want this listbox to take one cell and sometimes I want it to take two cells. so How can I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了以编程方式更改 RowSpan,您必须执行以下操作:
并将所需的行数放在我放置 2 的位置。
In order to change the RowSpan programmatically, you have to do the following:
And put the desired number of rows where I put the 2.