The RadGridView control has an attached property Telerik.Windows.Controls.StyleManager.Theme that can be used to alter appearance and visual style for the entire RadGridView.
The following example shows how to set a new theme for the RadGridView control both from code-behind and XAML.
| [C#] Setting theme |
Copy Code |
|
this.radGridView1.SetValue(Telerik.Windows.Controls.StyleManager.ThemeProperty, new VistaTheme()); |
| [VB.NET] Setting theme |
Copy Code |
|
Me.radGridView1.SetValue(Telerik.Windows.Controls.StyleManager.ThemeProperty, New VistaTheme()) |
| [XAML] Setting theme |
Copy Code |
|
<telerik:RadGridView Name="radGridView1" telerik:StyleManager.Theme="Vista"/> |
There are several predefined themes that came with the RadGridView control. You can see on the picture below.

 |
You can modify visual appearance of the RadGridView using "Global styles" for more information see Styling using Global Styles help topic. |