Telerik Silverlight RadGrid Skin
Could anyone please let me know how to change the skin of a Teler开发者_Python百科ik silverlight radgrid control programatically.
Thanks, Mahesh
Make sure you add all of the necessary Telerik theme .dll's and you can do it by setting the StyleManager.ApplicationTheme.
using Telerik.Windows.Controls;
namespace TestingTelerikSilverlightControls
{
public partial class MainPage : UserControl
{
public MainPage()
{
StyleManager.ApplicationTheme = new SummerTheme();
InitializeComponent();
}
}
}
精彩评论