PowerToys/Wox.Core/UI/IUIResource.cs

18 lines
380 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
2015-01-06 18:28:23 +08:00
using Wox.Core.i18n;
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();
}
}