Initial work for AbstractUI options

This commit is contained in:
Yoshi Askharoun
2021-08-05 20:45:26 -05:00
parent ba28eb7ef7
commit 3e3228245d
63 changed files with 2392 additions and 68 deletions
@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Text;
using System.Windows;
using OwlCore.AbstractUI.Models;
namespace OwlCore.Wpf.AbstractUI.Themes
{
/// <summary>
/// Default template for the <see cref="AbstractUIGroupPresenterStyle"/>
/// </summary>
public sealed partial class AbstractUIGroupPresenterStyle : ResourceDictionary
{
/// <summary>
/// Initializes a new instance of the <see cref="AbstractUIGroupPresenterStyle"/> class.
/// </summary>
public AbstractUIGroupPresenterStyle()
{
this.InitializeComponent();
}
}
}