WPFで独自の文字コード表を作成するのが好きです。True TypeフォントのすべてのUnicode文字を反復処理する最も簡単な方法はありますか?
私はこのようなことを試みました。
FontFamily fontfamily = combo.SelectedItem as FontFamily;
var typefaces = fontfamily.GetTypefaces();
foreach (Typeface typeface in typefaces)
{
GlyphTypeface glyph;
typeface.TryGetGlyphTypeface(out glyph);
if (glyphs != null)
{
mylist.Items.Add(glyph);
}
}
これは、Glyphs名前空間をリストボックスに追加するだけです。この場合、データテンプレートを定義する方法がわかりません。
よろしく、
ジャワハル