mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-15 12:09:18 +08: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();
|
|||
|
}
|
|||
|
}
|