PowerToys/Wox.Core/UI/IUIResource.cs

13 lines
273 B
C#
Raw Normal View History

2015-10-31 07:17:34 +08:00
using System.Windows;
namespace Wox.Core.UI
{
/// <summary>
/// Object implement this interface will have the ability to has its own UI styles
/// </summary>
2015-01-06 18:28:23 +08:00
public interface IUIResource
{
ResourceDictionary GetResourceDictionary();
}
}