mirror of
https://github.com/ZuneDev/ZuneModdingHelper.git
synced 2026-07-27 13:12:21 -07:00
19 lines
532 B
C#
19 lines
532 B
C#
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();
|
|
}
|
|
}
|
|
}
|