mirror of
https://github.com/ckaczor/Common.Wpf.git
synced 2026-01-14 10:00:05 -05:00
Initial commit
This commit is contained in:
14
HtmlTextBlock/TextLine.cs
Normal file
14
HtmlTextBlock/TextLine.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System.Collections.ObjectModel;
|
||||
|
||||
namespace Common.Wpf.HtmlTextBlock
|
||||
{
|
||||
public class TextLine
|
||||
{
|
||||
public Collection<TextFragment> FragmentList { get; private set; }
|
||||
|
||||
public TextLine()
|
||||
{
|
||||
FragmentList = new Collection<TextFragment>();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user