mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 19:49:15 +08:00
16 lines
391 B
C#
16 lines
391 B
C#
using System.IO;
|
|
using System.Windows;
|
|
using Wox.Infrastructure;
|
|
|
|
namespace Wox.Core.Resource
|
|
{
|
|
public abstract class Resource
|
|
{
|
|
public string DirectoryName { get; protected set; }
|
|
|
|
protected string DirectoryPath => Path.Combine(Infrastructure.Constant.ProgramDirectory, DirectoryName);
|
|
|
|
public abstract ResourceDictionary GetResourceDictionary();
|
|
}
|
|
}
|