开发者

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();
        }
    }
}
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜