how to add radioButton & CheckBox in DataGridView? in C#.net
how to add radioButton & CheckBox in DataGridView? and开发者_StackOverflow中文版 only one checkBox should be selected at a time and how to add event onCheck or OnSelected event?
add datagrid view -> go to properties
find property--> Columns (Collections)
Add Column -----> Name the column || Type: Select checkbox, button, image or link || Give column header name
To select single only: false the datagrid property "multiselect"
Click on event button in property to bind the Events.
精彩评论