Basic Syntax highlighting, added CodeTextBox to MainWindow to test it.

This commit is contained in:
David
2016-10-13 21:08:34 -04:00
parent 071b63f01d
commit 1c44e00a1d
7 changed files with 137 additions and 17 deletions

View File

@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Documents;
namespace Befunge.Editor.CharStyles
{
public interface ITextStyler
{
IEnumerable<Run> StyledString(string input);
}
}