Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 WinForms 中,我想知道应用于标签的空白空间:
在文本开始之前(* 标有问题)以及文本结尾,您可能也知道它会根据我们更改它的字体大小、字体系列、字体样式等属性而有所不同。
有没有c#计算空格的公式或比例?
因为当我们更改字体系列或字体样式时,我无法理解这个空间是如何增加或减少的。
将
Graphics.MeasureString(" ", yourFont);
适合你? http://msdn.microsoft.com/cs-cz/library/6xe5hazb.aspx
对于winforms,Padding Property是指定控件内部间距的地方。
Label.Padding.Left 和 Label.Padding.Right
Label.Padding.Left
Label.Padding.Right