HOW TO:在矩形中繪製被包圍的文字
您可以使用取得 Rectangle 或 RectangleF 參數之 Graphics 類別的 DrawString 多載方法,在矩形中繪製被包圍的文字。 您也會使用 Brush 和 Font。
您也可以使用取得 Rectangle 和 TextFormatFlags 參數之 TextRenderer 的 DrawText 多載方法,在矩形中繪製被包圍的文字。 您也會使用 Color 和 Font。
下列圖例示範了在使用 DrawString 方法時,於矩形中繪製文字的輸出。
若要使用 GDI+ 在矩形中繪製被包圍的文字
使用 DrawString 多載方法、傳遞想要的文字、Rectangle 或 RectangleF、Font 然後 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 多載方法包圍的文字、傳遞想要的文字、Rectangle、Font 然後 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)); }
編譯程式碼
前一個範例需要:
- PaintEventArgs e,這是 PaintEventHandler 的參數。