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

20 lines
549 B
C#
Raw Normal View History

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