В примере с помощью параметров командной строки загружаем тему оформления
- protected override void OnInitialized(EventArgs e)
- {
- string[] tempparams = System.Environment.GetCommandLineArgs();
- if (tempparams.Length == 2 && File.Exists(tempparams[1]))
- {
- Uri themeUri = new Uri(tempparams[1], UriKind.Relative);
- ResourceDictionary theme = (ResourceDictionary)Application.LoadComponent(themeUri);
- Resources.MergedDictionaries.Add(theme);
- }
- }
* This source code was highlighted with Source Code Highlighter.