C#我需要一个像DataGridView一样工作的控件,但允许我添加一个自定义控件

时间:2012-08-20 03:29:58

标签: c# datagrid custom-controls

我有一个应用程序,需要在网格中显示1到N个自定义控件(每行一个控件),并允许用户一次选择一行。

我尝试使用DataGridView但只允许使用Text,Button,Checkbox,ComboBox,Image和Link。

是否有类似于DataGridView的控件允许我插入任意自定义控件?

谢谢!

1 个答案:

答案 0 :(得分:3)

您可以通过扩展custom columnDataGridViewColumn类来创建DataGridViewCell。查看MSDN文章 - How to: Host Controls in Windows Forms DataGridView Cells.