Graphics.DrawString 在字中进行切割

发布于 2024-11-30 01:56:07 字数 350 浏览 3 评论 0原文

我创建了一个用户控件,它基本上是一个带有一些不错的小功能的按钮。

这些功能之一是它确定文本可能的最大字体大小,同时将文本保持在框的范围内。

这在大多数情况下工作得很好,但有时它会将一个单词切成两半以适应它。

所以它可能会显示为..

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

零度° 2024-12-07 01:56:07

您可以尝试使用 TextRenderer 代替:

  TextRenderer.DrawText(e.Graphics,
                        "stackoverflow",
                        this.Font,
                        new Rectangle(10, 10, 32, 32),
                        Color.Black,
                        Color.Empty,
                        TextFormatFlags.WordBreak | TextFormatFlags.VerticalCenter | TextFormatFlags.HorizontalCenter);

  TextRenderer.DrawText(e.Graphics,
                        "stack overflow",
                        this.Font,
                        new Rectangle(50, 10, 32, 32),
                        Color.Black,
                        Color.Empty,
                        TextFormatFlags.WordBreak | TextFormatFlags.VerticalCenter | TextFormatFlags.HorizontalCenter);

在此处输入图像描述

You could try using TextRenderer instead:

  TextRenderer.DrawText(e.Graphics,
                        "stackoverflow",
                        this.Font,
                        new Rectangle(10, 10, 32, 32),
                        Color.Black,
                        Color.Empty,
                        TextFormatFlags.WordBreak | TextFormatFlags.VerticalCenter | TextFormatFlags.HorizontalCenter);

  TextRenderer.DrawText(e.Graphics,
                        "stack overflow",
                        this.Font,
                        new Rectangle(50, 10, 32, 32),
                        Color.Black,
                        Color.Empty,
                        TextFormatFlags.WordBreak | TextFormatFlags.VerticalCenter | TextFormatFlags.HorizontalCenter);

enter image description here

美人迟暮 2024-12-07 01:56:07

您需要在填充 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)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文