diff --git a/UnicodeCharacterInspector/CharacterInfoViewModel.cs b/UnicodeCharacterInspector/CharacterInfoViewModel.cs index 1dd67b3..9947d2e 100644 --- a/UnicodeCharacterInspector/CharacterInfoViewModel.cs +++ b/UnicodeCharacterInspector/CharacterInfoViewModel.cs @@ -61,6 +61,7 @@ namespace UnicodeCharacterInspector NotifyPropertyChanged("NumericType"); NotifyPropertyChanged("NumericValue"); NotifyPropertyChanged("ContributoryProperties"); + NotifyPropertyChanged("CoreProperties"); } } } @@ -124,5 +125,10 @@ namespace UnicodeCharacterInspector { get { return character != null ? characterInfo.ContributoryProperties : null as ContributoryProperties?; } } + + public CoreProperties? CoreProperties + { + get { return character != null ? characterInfo.CoreProperties : null as CoreProperties?; } + } } } diff --git a/UnicodeCharacterInspector/MainWindow.xaml b/UnicodeCharacterInspector/MainWindow.xaml index 05ab2eb..4267fa3 100644 --- a/UnicodeCharacterInspector/MainWindow.xaml +++ b/UnicodeCharacterInspector/MainWindow.xaml @@ -43,7 +43,7 @@ - +