mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 03:37:10 +08:00
18 lines
380 B
C#
18 lines
380 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows;
|
|
using Wox.Core.i18n;
|
|
|
|
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();
|
|
}
|
|
}
|