在WPF中,System.Windows.Media命名空间MSDN FormattedText中有FormattedText,我可以这样使用:
private static Size GetTextSize(string txt, string font, int size, bool isBold)
{
Typeface tf = new Typeface(new System.Windows.Media.FontFamily(font),
FontStyles.Normal,
(isBold) ? FontWeights.Bold : FontWeights.Normal,
FontStretches.Normal);
FormattedText ft = new FormattedText(txt, new CultureInfo("en-us"), System.Windows.FlowDirection.LeftToRight, tf, (double)size, System.Windows.Media.Brushes.Black, null, TextFormattingMode.Display);
return new Size { Width = ft.WidthIncludingTrailingWhitespace, Height = ft.Height };
}
除了调用服务器之外,Silverlight中是否有一个很好的方法来获取宽度(以及高度不重要)?
答案 0 :(得分:30)
我见过的一种方法,可能在你的特定实例中不起作用,就是把文本放到一个没有样式的TextBlock中,然后得到那个控件的宽度,如下所示:
private double GetTextWidth(string text, int fontSize)
{
TextBlock txtMeasure = new TextBlock();
txtMeasure.FontSize = fontSize;
txtMeasure.Text = text;
double width = txtMeasure.ActualWidth;
return width;
}
毫无疑问,这是一个黑客攻击。