Applying themes to grids at runtime?



How to apply/change themes to grid at  runtime?



Regards,
Ranjan VijayKumar.

1 Reply

MK Muthukumar Kalyanasundaram Syncfusion Team November 25, 2014 08:56 AM UTC

Hi Ranjan,

 

Thank you for your interest in Syncfusion products.

 

If you want to change the theme of grid at run time, you can useGridVisualStyles” property. By using this property you can set the theme of a grid. Please refer the below code,

 

Code:

 

private void button1_Click(object sender, EventArgs e)

 {

   this.gridControl2.ThemesEnabled = true;

   this.gridControl2.GridVisualStyles = Syncfusion.Windows.Forms.GridVisualStyles.Metro;            

 }

 

Please let me know if you have any concerns.

 

Regards,

Muthukumar K

 


Loader.
Up arrow icon