PowerToys/Wox.Core/UI/IUIResource.cs
2015-10-30 23:23:01 +00:00

13 lines
273 B
C#

using System.Windows;
namespace Wox.Core.UI
{
/// <summary>
/// Object implement this interface will have the ability to has its own UI styles
/// </summary>
public interface IUIResource
{
ResourceDictionary GetResourceDictionary();
}
}