EnableVisualStyles for one control

  • Thread starter Thread starter Samuel
  • Start date Start date
S

Samuel

I generally want the EnableVisualStyles to be set to True, my question is
whether it is possible to set it to False for 1 control or anything lese
that will have similar effect

Thank you,
Samuel
 
Some controls have specific properties that allow this. Others do not.
For example, you can turn off the support for the DataGridView header
cells using:

Me.DataGridView1.EnableHeadersVisualStyles = False

==============
Clay Burch
Syncfusion, Inc.
 
Back
Top