2016-10-20 101 views
0

不工作我已經看到了一些類似的問題,但所有的答案都是一樣的,而不是工作爲我自己,Telerik的主題在WPF應用程序

我想在WPF/VB使用Telerik的主題。網絡應用程序,但主題沒有設置,而且我不確定爲什麼,

我用下面的下面的代碼來實現我所試圖做的嘗試:

StyleManager.ApplicationTheme = New VistaTheme() 
StyleManager.SetTheme(rad_button, New VistaTheme) 

(我使用VistaTheme作爲例如,我已經嘗試了所有可用主題的代碼)

任何幫助或建議將appriciated(即使在c#中)!

+0

嘗試添加'InitializeComponent()'。 –

回答

1

您需要改變款式後InitializeComponent()方法。

StyleManager.ApplicationTheme = New VistaTheme() 
StyleManager.SetTheme(rad_button, New VistaTheme) 
InitializeComponent() 
+0

感謝您的建議,但我已經嘗試過,但仍然無法正常工作 –