[SOLVED] Datagridview, 3 dot for columns

Answered
0
0

Hi,

Sorry but don’t know how to call this.
Is there a way to hide this 3 dot?

the first 2 columns i have then visible = false, and they show here, this can be handy for the user to select which columns to see, but i don’t want to have the non-visible one’s to show here.

Thanks in advanced,

Attachment
  • You must to post comments
Best Answer
0
0

Hi Jorge,

To disable:

DataGridView.ShowColumnVisibilityMenu = false;

To disable per column:

DataGridViewColumn.ShowInVisibilityMenu = false;

 

HTH,

Levie

 

  • You must to post comments
Showing 1 result
Your Answer

Please first to submit.