// 新しい分類外観マップを作成する
ClassificationAppearanceMap classMap =
new ClassificationAppearanceMap();
// 新しいテキスト文書の外観オブジェクトを作成する
TextDocumentAppearance tda = new TextDocumentAppearance();
// 前景色のみを変更する
tda.Foreground = new SolidColorBrush(Colors.Red);
// "keyword" 分類タイプ用に
// 分類マップに新規エントリを追加する
// 同じ分類タイプを
// 既存エントリで置き換える場合、
// 最後の引数は true
classMap.AddMapEntry(
ClassificationType.Keyword,
tda,
true
);
// 分類マップの xamSyntaxEditor への割り当て
this.xamSyntaxEditor1.ClassificationAppearanceMap = classMap;