0

我正在尝试将 ComponentOne 主题应用于我的 silverlight 应用程序;但是,我无法让它工作。有人知道我错过了什么吗?

我正在尝试在 App.xaml.cs 下为 application_startup 添加它:

Current.Resources.MergedDictionaries.Add(new C1ThemeWhistlerBlue());
4

1 回答 1

0

我最终想出了另一种方法来做到这一点。将以下行添加到 app.xaml.cs 中的 Application_startup:

new C1ThemeWhistlerBlue().Apply((FrameworkElement)Current.RootVisual);

这将添加主题 Whistler Blue。

要删除主题,您需要清除 Current.Resources.MergedDictionaries(或者只是从中删除该对象)。

于 2013-04-03T13:56:08.550 回答