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