Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想DataGridView在 windows c# 中展示一个作为剧院的结构设计。我不知道怎么做,到目前为止我已经搜索过,但我没有找到任何特定的样式。
DataGridView
设计存储在数据库中,根据该数据,设计应显示在数据网格中。
例如,看附图,我想这样做:
可以创建表吗?
从数据库中读取数据
每行添加一个 TableRow。每个座位,添加一个 TableCell。在单元格中插入您喜欢的任何内容
TableCell.Text
对于段落,您可以输入空单元格/行,但您需要知道该位置。
然后将表格附加到占位符或您的页面
Page.Controls.Add(Table); PlaceHolder.Controls.Add(Table);