ControlPaint.DrawStringDisabled 方法

定义

绘制处于禁用状态的指定字符串。

重载

DrawStringDisabled(Graphics, String, Font, Color, RectangleF, StringFormat)

在指定图形表面上的指定边界内,以指定的字体、颜色和格式绘制处于禁用状态的指定字符串。

DrawStringDisabled(IDeviceContext, String, Font, Color, Rectangle, TextFormatFlags)

使用基于 GDI 的专用 TextRenderer,在指定图形表面上的指定边界内,以指定的字体、颜色和格式绘制处于禁用状态的指定字符串。

DrawStringDisabled(Graphics, String, Font, Color, RectangleF, StringFormat)

在指定图形表面上的指定边界内,以指定的字体、颜色和格式绘制处于禁用状态的指定字符串。

public:
 static void DrawStringDisabled(System::Drawing::Graphics ^ graphics, System::String ^ s, System::Drawing::Font ^ font, System::Drawing::Color color, System::Drawing::RectangleF layoutRectangle, System::Drawing::StringFormat ^ format);
public static void DrawStringDisabled (System.Drawing.Graphics graphics, string s, System.Drawing.Font font, System.Drawing.Color color, System.Drawing.RectangleF layoutRectangle, System.Drawing.StringFormat format);
static member DrawStringDisabled : System.Drawing.Graphics * string * System.Drawing.Font * System.Drawing.Color * System.Drawing.RectangleF * System.Drawing.StringFormat -> unit
Public Shared Sub DrawStringDisabled (graphics As Graphics, s As String, font As Font, color As Color, layoutRectangle As RectangleF, format As StringFormat)

参数

graphics
Graphics

要进行绘制的 Graphics

s
String

要绘制的字符串。

font
Font

绘制字符串所用的 Font

color
Color

字符串背景的 Color

layoutRectangle
RectangleF

一个 RectangleF,它表示字符串的尺寸。

format
StringFormat

应用于字符串的 StringFormat

适用于

DrawStringDisabled(IDeviceContext, String, Font, Color, Rectangle, TextFormatFlags)

使用基于 GDI 的专用 TextRenderer,在指定图形表面上的指定边界内,以指定的字体、颜色和格式绘制处于禁用状态的指定字符串。

public:
 static void DrawStringDisabled(System::Drawing::IDeviceContext ^ dc, System::String ^ s, System::Drawing::Font ^ font, System::Drawing::Color color, System::Drawing::Rectangle layoutRectangle, System::Windows::Forms::TextFormatFlags format);
public static void DrawStringDisabled (System.Drawing.IDeviceContext dc, string s, System.Drawing.Font font, System.Drawing.Color color, System.Drawing.Rectangle layoutRectangle, System.Windows.Forms.TextFormatFlags format);
static member DrawStringDisabled : System.Drawing.IDeviceContext * string * System.Drawing.Font * System.Drawing.Color * System.Drawing.Rectangle * System.Windows.Forms.TextFormatFlags -> unit
Public Shared Sub DrawStringDisabled (dc As IDeviceContext, s As String, font As Font, color As Color, layoutRectangle As Rectangle, format As TextFormatFlags)

参数

dc
IDeviceContext

基于 GDI 的 TextRenderer

s
String

要绘制的字符串。

font
Font

绘制字符串所用的 Font

color
Color

字符串背景的 Color

layoutRectangle
Rectangle

一个 RectangleF,它表示字符串的尺寸。

format
TextFormatFlags

应用于字符串的 StringFormat

适用于