mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 19:26:39 +02:00
16 lines
368 B
C#
16 lines
368 B
C#
using System.IO;
|
|
using System.Windows;
|
|
using Wox.Infrastructure;
|
|
|
|
namespace Wox.Core.UI
|
|
{
|
|
public abstract class Resource
|
|
{
|
|
public string DirectoryName { get; protected set; }
|
|
|
|
protected string DirectoryPath => Path.Combine(WoxDirectroy.Executable, DirectoryName);
|
|
|
|
public abstract ResourceDictionary GetResourceDictionary();
|
|
}
|
|
}
|