Reputation: 741
Can anyone tell me how to hide the header in DevExpress gridcontrol..?? I'm using C#.. All I want is a matrix of cells with NO header row with captions.
Upvotes: 4
Views: 12867
Reputation: 501
I can't see how to do it programatically. For Winforms XtraGrid.
Run the designer. (by clicking on the control in design view, then clicking on the tiny black triangle)
Under Options, expand OptionsView. Within Options.OptionsView find ShowColumnHeaders. Set it = False
Upvotes: 0
Reputation: 56
go the run designer of the grid view, then try to modify the prorety of show groupe panel and make it false.(Feature Browser/grouping/groupe panel/show groupe panel)
Upvotes: 4
Reputation: 17848
What kind of DevExpress grid control you are using?
Please, use the following ShowColumnHeaders options:
Upvotes: 3
Reputation: 245012
According to their support forum, the proper solution is to toggle the OptionsView.ShowColumnHeaders
property.
If you set the property to false
, the control will no longer display column headers.
Upvotes: 6