我TextBlock
在 Fixed Size Column 中有几个 s Grid
。即Grid
大小可能会改变,但它的列宽都是相同的(例如,整个大小的 10%)并且每列包含一个TextBlock
.
TextBlock
所有s的字体大小必须相同。
如何找到使TextBlock
s 中的所有文本可见的最大可能字体大小?
我TextBlock
在 Fixed Size Column 中有几个 s Grid
。即Grid
大小可能会改变,但它的列宽都是相同的(例如,整个大小的 10%)并且每列包含一个TextBlock
.
TextBlock
所有s的字体大小必须相同。
如何找到使TextBlock
s 中的所有文本可见的最大可能字体大小?
您可以使用Graphics.MeasureString Method (String, Font, Int32)来计算字体大小。然后使用一些行为魔术将字体大小绑定到 TextBlock。
private void MeasureStringWidth(PaintEventArgs e)
{
// Set up string.
string measureString = "Measure String";
Font stringFont = new Font("Arial", 16);
// Set maximum width of string.
int stringWidth = 200;
// Measure string.
SizeF stringSize = new SizeF();
stringSize = e.Graphics.MeasureString(measureString, stringFont, stringWidth);
// Draw rectangle representing size of string.
e.Graphics.DrawRectangle(new Pen(Color.Red, 1), 0.0F, 0.0F, stringSize.Width, stringSize.Height);
// Draw string to screen.
e.Graphics.DrawString(measureString, stringFont, Brushes.Black, new PointF(0, 0));
}