Use ASCII as display text for "TAG" characters at U+E0000.

This commit is contained in:
GoldenCrystal
2017-06-25 20:09:54 +02:00
parent 642b675b3d
commit d65f7f0a77
7 changed files with 36 additions and 21 deletions
@@ -88,7 +88,7 @@ namespace UnicodeCharacterInspector
if (displayText != oldValue) NotifyPropertyChanged(nameof(DisplayText));
}
public string DisplayText { get { return displayText; } }
public string DisplayText => displayText;
public int? CodePoint => character != null ? codePoint : null as int?;