views:

167

answers:

1

How do I make an Infragistics WinForm Grid to allow only a single row to be selected?

+1  A: 

Set following properties of grid control.

MultiSelect=False

SelectionMode=FullRowSelect

adatapost
Thanks for the answer.
Greg Finzer