Files
ZuneModdingHelper/OwlCore.Wpf/AbstractUI/Themes/AbstractBooleanStyle.xaml.cs
T

20 lines
527 B
C#

using System.Windows;
using OwlCore.AbstractUI.Models;
namespace OwlCore.Wpf.AbstractUI.Themes
{
/// <summary>
/// Default template for the <see cref="AbstractBooleanStyle"/>
/// </summary>
public sealed partial class AbstractBooleanStyle : ResourceDictionary
{
/// <summary>
/// Initializes a new instance of the <see cref="AbstractButtonTemplate"/> class.
/// </summary>
public AbstractBooleanStyle()
{
this.InitializeComponent();
}
}
}