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

19 lines
532 B
C#
Raw Normal View History

2021-08-05 20:45:26 -05:00
using System.Windows;
namespace OwlCore.Wpf.AbstractUI.Themes
{
/// <summary>
/// Default template for the <see cref="AbstractProgressUIElementStyle"/>
/// </summary>
public sealed partial class AbstractProgressUIElementStyle : ResourceDictionary
{
/// <summary>
/// Initializes a new instance of the <see cref="AbstractProgressUIElementStyle"/> class.
/// </summary>
public AbstractProgressUIElementStyle()
{
this.InitializeComponent();
}
}
}