Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Devexpress winform Autogenerate columns [closed]

Please help me on how to access AutoGenerateColumns property of GridControl in devexpress just like datagridview in normal control of winform.

like image 547
Simon Huynh Avatar asked Jul 15 '13 07:07

Simon Huynh


1 Answers

You will have to do this

gridview1.OptionsBehavior.AutoPopuplateColumns = false;

See this for details AutoPopulateColumns

like image 114
Ehsan Avatar answered Oct 20 '22 06:10

Ehsan