4
如何將FormattedText字符串轉換爲基於幾何的對象?如何將FormattedText字符串轉換爲基於幾何的對象?
我不認爲這個問題需要太多的解釋,我不能想,如果很多其他的細節,我可以給...
我只需要在FormattedText轉換成東西我可以用數學(幾何)。
任何意見是讚賞!
如何將FormattedText字符串轉換爲基於幾何的對象?如何將FormattedText字符串轉換爲基於幾何的對象?
我不認爲這個問題需要太多的解釋,我不能想,如果很多其他的細節,我可以給...
我只需要在FormattedText轉換成東西我可以用數學(幾何)。
任何意見是讚賞!
您可能正在尋找FormattedText.BuildGeometry Method
或FormattedText.BuildHighlightGeometry Method
;這兩個MSDN鏈接都以通常的例子爲特色。
基本使用模式是像這樣:
// Create sample formatted text.
FormattedText formattedText = new FormattedText("Sample",
CultureInfo.GetCultureInfo("en-us"), FlowDirection.LeftToRight,
new Typeface("Verdana"), 16, System.Windows.Media.Brushes.Black);
// Build geometry object that represents the text.
Geometry normalGeometry = formattedText.BuildGeometry(
new System.Windows.Point(0, 0));
// Build geometry object that represents the highlight bounding box of the text.
Geometry highLightGeometry = formattedText.BuildHighlightGeometry(
new System.Windows.Point(0, 0));