mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-15 03:59:15 +08:00
13 lines
273 B
C#
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();
|
|
}
|
|
}
|