如何:在矩形中绘制换行文本

更新:2007 年 11 月

可以使用 Graphics 类的接受 RectangleRectangleF 参数的 DrawString 重载方法在矩形中绘制换行文本。您还将使用 BrushFont

也可以使用 TextRenderer 的接受 RectangleTextFormatFlags 参数的 DrawText 重载方法在矩形中绘制换行文本。您还将使用 ColorFont

下图显示使用 DrawString 方法时在矩形中绘制的文本的输出。

字体文本

用 GDI+ 在矩形中绘制换行文本

  • 使用 DrawString 重载方法,使用时传入您需要的文本、RectangleRectangleFFont 以及 Brush

    Dim text1 As String = "Draw text in a rectangle by passing a RectF to the DrawString method."
    Dim font1 As New Font("Arial", 12, FontStyle.Bold, GraphicsUnit.Point)
    Try
        Dim rectF1 As New RectangleF(30, 10, 100, 122)
        e.Graphics.DrawString(text1, font1, Brushes.Blue, rectF1)
        e.Graphics.DrawRectangle(Pens.Black, Rectangle.Round(rectF1))
    Finally
        font1.Dispose()
    End Try
    
    string text1 = "Draw text in a rectangle by passing a RectF to the DrawString method.";
    using (Font font1 = new Font("Arial", 12, FontStyle.Bold, GraphicsUnit.Point))
    {
        RectangleF rectF1 = new RectangleF(30, 10, 100, 122);
        e.Graphics.DrawString(text1, font1, Brushes.Blue, rectF1);
        e.Graphics.DrawRectangle(Pens.Black, Rectangle.Round(rectF1));
    }
    

用 GDI 在矩形中绘制换行文本

  • 使用 TextFormatFlags 枚举值指定应通过 DrawText 重载方法换行的文本,使用时传入您需要的文本、RectangleFont 以及 Color

    Dim text2 As String = _
        "Draw text in a rectangle by passing a RectF to the DrawString method."
    Dim font2 As New Font("Arial", 12, FontStyle.Bold, GraphicsUnit.Point)
    Try
        Dim rect2 As New Rectangle(30, 10, 100, 122)
    
        ' Specify the text is wrapped.
        Dim flags As TextFormatFlags = TextFormatFlags.WordBreak
        TextRenderer.DrawText(e.Graphics, text2, font2, rect2, Color.Blue, flags)
        e.Graphics.DrawRectangle(Pens.Black, Rectangle.Round(rect2))
    Finally
        font2.Dispose()
    End Try
    
    string text2 = "Draw text in a rectangle by passing a RectF to the DrawString method.";
    using (Font font2 = new Font("Arial", 12, FontStyle.Bold, GraphicsUnit.Point))
    {
        Rectangle rect2 = new Rectangle(30, 10, 100, 122);
    
        // Specify the text is wrapped.
        TextFormatFlags flags = TextFormatFlags.WordBreak;
        TextRenderer.DrawText(e.Graphics, text2, font2, rect2, Color.Blue, flags);
        e.Graphics.DrawRectangle(Pens.Black, Rectangle.Round(rect2));
    
    }
    

编译代码

前面的示例需要:

请参见

任务

如何:用 GDI 绘制文本

如何:构造字体系列和字体

如何:在指定位置绘制文本

其他资源

使用字体和文本