コード例 #1
0
 if (Set(ref _currentFontName, value, notify: false))
 {
     App.TryEnqueue(() =>
     {
         Document.Selection.CharacterFormat.Name = _currentFontName;
         OnPropertyChanged();
     });
 }
コード例 #2
0
ファイル: TextDocument.cs プロジェクト: yaichenbaum/Quick-Pad
 if (Set(ref _currentFontName, value, notify: false))
 {
     App.TryEnqueue(() =>
     {
         Document.FontFamily = new FontFamily(_currentFontName = value);
         OnPropertyChanged();
     });
 }