Graphics.DrawString 在字中进行切割
我创建了一个用户控件,它基本上是一个带有一些不错的小功能的按钮。
这些功能之一是它确定文本可能的最大字体大小,同时将文本保持在框的范围内。
这在大多数情况下工作得很好,但有时它会将一个单词切成两半以适应它。
所以它可能会显示为..
stackov
erflow
而不是
stackoverflow
(但以较小的字体)
我认为会有一个 StringFormatFlag 允许我指定如何完成自动换行。
我想要自动换行,但不是“字符”换行。
谢谢 富有的。
I have created a usercontrol which is basically a button with some nice little features.
One of those features is that it determines the largest font size possible for the text, whilst keeping the text within the confines on the box.
This works fine in the majority of cases, but sometimes it will chop a word in half to fit it in.
So it might appear as..
stackov
erflow
Rather than
stackoverflow
(but in a smaller font)
I thought that there would have been a StringFormatFlag to allow me to specify how word-wrapping is done.
I want word wrapping, but not 'character' wrapping.
Thanks
Rich.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试使用 TextRenderer 代替:
You could try using TextRenderer instead:
您需要在填充 StringFormatFlags.NoWrap 时指定 < a href="http://msdn.microsoft.com/en-us/library/system.drawing.stringformat.formatflags.aspx" rel="nofollow">StringFormat.FormatFlags 财产。然后使用接受 StringFormat 类的 DrawString 重载之一。以下三种方法之一:
DrawString(字符串、字体、画笔、 PointF,StringFormat)
DrawString(字符串,字体、画笔、RectangleF、StringFormat)
DrawString(字符串、字体、画笔、单个、单个、字符串格式)
You need to specify StringFormatFlags.NoWrap when populating the StringFormat.FormatFlags property. Then use one of the DrawString overloads that accepts a StringFormat class. One of the following three methods:
DrawString(String, Font, Brush, PointF, StringFormat)
DrawString(String, Font, Brush, RectangleF, StringFormat)
DrawString(String, Font, Brush, Single, Single, StringFormat)