mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 19:26:39 +02:00
17 lines
352 B
C#
17 lines
352 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows;
|
|
|
|
namespace Wox.Core.UI
|
|
{
|
|
/// <summary>
|
|
/// Object implement this interface will have the ability to has its own UI styles
|
|
/// </summary>
|
|
interface IUIResource
|
|
{
|
|
ResourceDictionary GetResourceDictionary();
|
|
}
|
|
}
|