How to add radioButton & CheckBox to DataGridView? in c # .net

How to add radioButton and CheckBox to DataGridView? and only one checkBox should be selected at a time and how to add an onCheck or OnSelected event?

+3
source share
1 answer

add datagrid view -> go to properties

find property → Columns (collections)

Add Column -----> Name the Column || Type: select a check box, button, image or link || Specify a column header name

To select only one: false datagrid property "multiselect"

Click the events button in the property to bind events.

+1
source

Source: https://habr.com/ru/post/1793008/


All Articles