如何计算WPF TextBlock的已知字体大小和字符宽度?
假设我的TextBlock
文字为 , 。
如何计算合适的TextBlock
?
回答:
使用FormattedText
该类。
我在代码中做了一个辅助函数:
private Size MeasureString(string candidate){
var formattedText = new FormattedText(
candidate,
CultureInfo.CurrentCulture,
FlowDirection.LeftToRight,
new Typeface(this.textBlock.FontFamily, this.textBlock.FontStyle, this.textBlock.FontWeight, this.textBlock.FontStretch),
this.textBlock.FontSize,
Brushes.Black,
new NumberSubstitution(),
1);
return new Size(formattedText.Width, formattedText.Height);
}
它返回可在WPF布局中使用的与设备无关的像素。
以上是 如何计算WPF TextBlock的已知字体大小和字符宽度? 的全部内容, 来源链接: utcz.com/qa/424764.html