本文整理匯總了C#中System.Windows.Media.GlyphRunDrawing類的典型用法代碼示例。如果您正苦於以下問題:C# GlyphRunDrawing類的具體用法?C# GlyphRunDrawing怎麽用?C# GlyphRunDrawing使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
GlyphRunDrawing類屬於System.Windows.Media命名空間,在下文中一共展示了GlyphRunDrawing類的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: GlyphRun
GlyphRun theGlyphRun = new GlyphRun(
new GlyphTypeface(new Uri(@"C:\WINDOWS\Fonts\TIMES.TTF")),
0,
false,
13.333333333333334,
new ushort[]{43, 72, 79, 79, 82, 3, 58, 82, 85, 79, 71},
new Point(0, 12.29),
new double[]{
9.62666666666667, 7.41333333333333, 2.96,
2.96, 7.41333333333333, 3.70666666666667,
12.5866666666667, 7.41333333333333,
4.44, 2.96, 7.41333333333333},
null,
null,
null,
null,
null,
null
);
GlyphRunDrawing gDrawing = new GlyphRunDrawing(Brushes.Black, theGlyphRun);