Vignesh
Vignesh

Reputation: 741

hide headers in Devexpress gridcontrol

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

Answers (5)

user1040323
user1040323

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

Amine Njeh
Amine Njeh

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

DmitryG
DmitryG

Reputation: 17848

What kind of DevExpress grid control you are using?
Please, use the following ShowColumnHeaders options:

Upvotes: 3

Cody Gray
Cody Gray

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

to StackOverflow
to StackOverflow

Reputation: 124804

Set the ShowColumnHeaders property to false.

Upvotes: 2

Related Questions