forked from Misaki/GhostEngine
13 lines
345 B
C#
13 lines
345 B
C#
using Microsoft.UI.Xaml;
|
|
|
|
namespace Ghost.Editor.Core.Controls;
|
|
|
|
public partial class ControlsDictionary : ResourceDictionary
|
|
{
|
|
private const string _DICTIONARY_PATH = "ms-appx:///Ghost.Editor.Core/Controls/ControlsDictionary.xaml";
|
|
|
|
public ControlsDictionary()
|
|
{
|
|
Source = new Uri(_DICTIONARY_PATH, UriKind.Absolute);
|
|
}
|
|
} |