0

在 C# 或 VB.NET 中,我如何编写一个只需要传递一个字符串和一个字体来返回字体度量的通用函数?

这是我尝试过的:

Private Function Get_Text_Measure(ByVal text As String, _
                                  ByVal font As Font) As SizeF

    Using g As Graphics = ...
        Return g.MeasureString(text, font)
    End Using

End Function
4

1 回答 1

2

您可以使用TextRenderer

return TextRenderer.MeasureText(text , font);
于 2013-10-22T15:23:05.237 回答