mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 11:39:16 +08:00
28 lines
822 B
C#
28 lines
822 B
C#
using System;
|
|
using System.Linq;
|
|
using System.Windows;
|
|
using Wox.Core.i18n;
|
|
using Wox.Core.Theme;
|
|
|
|
namespace Wox.Core.UI
|
|
{
|
|
public class ResourceMerger
|
|
{
|
|
public static void ApplyResources()
|
|
{
|
|
var UIResourceType = typeof(IUIResource);
|
|
var UIResources = AppDomain.CurrentDomain.GetAssemblies()
|
|
.SelectMany(s => s.GetTypes())
|
|
.Where(p => p.IsClass && !p.IsAbstract && UIResourceType.IsAssignableFrom(p));
|
|
|
|
Application.Current.Resources.MergedDictionaries.Clear();
|
|
|
|
foreach (var uiResource in UIResources)
|
|
{
|
|
Application.Current.Resources.MergedDictionaries.Add(
|
|
((IUIResource)Activator.CreateInstance(uiResource)).GetResourceDictionary());
|
|
}
|
|
}
|
|
}
|
|
}
|