Initial commit

This commit is contained in:
2023-04-07 13:35:10 -04:00
commit a3984cfefb
12 changed files with 800 additions and 0 deletions

14
TextLine.cs Normal file
View File

@@ -0,0 +1,14 @@
using System.Collections.ObjectModel;
namespace ChrisKaczor.Wpf.Controls
{
public class TextLine
{
public Collection<TextFragment> FragmentList { get; }
public TextLine()
{
FragmentList = new Collection<TextFragment>();
}
}
}