RadioButtonRenderer.DrawRadioButton 方法

定义

绘制选项按钮控件(也称为单选按钮)。

重载

DrawRadioButton(Graphics, Point, RadioButtonState)

在指定状态下和指定位置绘制选项按钮控件(也称为单选按钮)。

DrawRadioButton(Graphics, Point, Rectangle, String, Font, Boolean, RadioButtonState)

在指定状态下和指定位置,用指定文本和可选的聚焦框绘制选项按钮控件(也称为单选按钮)。

DrawRadioButton(Graphics, Point, Rectangle, String, Font, TextFormatFlags, Boolean, RadioButtonState)

在指定状态下和指定位置,用指定文本和文本格式以及可选的聚焦框,绘制选项按钮控件(也称为单选按钮)。

DrawRadioButton(Graphics, Point, Rectangle, String, Font, Image, Rectangle, Boolean, RadioButtonState)

在指定状态下和指定位置,用指定文本和图像以及可选的聚焦框,绘制选项按钮控件(也称为单选按钮)。

DrawRadioButton(Graphics, Point, Rectangle, String, Font, TextFormatFlags, Image, Rectangle, Boolean, RadioButtonState)

在指定状态下和指定位置,用指定文本、文本格式、图像和可选的聚焦框,绘制选项按钮控件(也称为单选按钮)。

DrawRadioButton(Graphics, Point, RadioButtonState)

在指定状态下和指定位置绘制选项按钮控件(也称为单选按钮)。

public:
 static void DrawRadioButton(System::Drawing::Graphics ^ g, System::Drawing::Point glyphLocation, System::Windows::Forms::VisualStyles::RadioButtonState state);
public static void DrawRadioButton (System.Drawing.Graphics g, System.Drawing.Point glyphLocation, System.Windows.Forms.VisualStyles.RadioButtonState state);
static member DrawRadioButton : System.Drawing.Graphics * System.Drawing.Point * System.Windows.Forms.VisualStyles.RadioButtonState -> unit
Public Shared Sub DrawRadioButton (g As Graphics, glyphLocation As Point, state As RadioButtonState)

参数

g
Graphics

用于绘制选项按钮的 Graphics

glyphLocation
Point

Point,用于绘制选项按钮标志符号的位置。

state
RadioButtonState

RadioButtonState 值之一,它指定选项按钮的可视状态。

注解

如果在操作系统中启用了视觉样式,并且视觉样式应用于当前应用程序,则此方法将使用当前视觉样式绘制选项按钮。 否则,此方法将使用经典Windows样式绘制选项按钮。

适用于

DrawRadioButton(Graphics, Point, Rectangle, String, Font, Boolean, RadioButtonState)

在指定状态下和指定位置,用指定文本和可选的聚焦框绘制选项按钮控件(也称为单选按钮)。

public:
 static void DrawRadioButton(System::Drawing::Graphics ^ g, System::Drawing::Point glyphLocation, System::Drawing::Rectangle textBounds, System::String ^ radioButtonText, System::Drawing::Font ^ font, bool focused, System::Windows::Forms::VisualStyles::RadioButtonState state);
public static void DrawRadioButton (System.Drawing.Graphics g, System.Drawing.Point glyphLocation, System.Drawing.Rectangle textBounds, string radioButtonText, System.Drawing.Font font, bool focused, System.Windows.Forms.VisualStyles.RadioButtonState state);
public static void DrawRadioButton (System.Drawing.Graphics g, System.Drawing.Point glyphLocation, System.Drawing.Rectangle textBounds, string? radioButtonText, System.Drawing.Font? font, bool focused, System.Windows.Forms.VisualStyles.RadioButtonState state);
static member DrawRadioButton : System.Drawing.Graphics * System.Drawing.Point * System.Drawing.Rectangle * string * System.Drawing.Font * bool * System.Windows.Forms.VisualStyles.RadioButtonState -> unit
Public Shared Sub DrawRadioButton (g As Graphics, glyphLocation As Point, textBounds As Rectangle, radioButtonText As String, font As Font, focused As Boolean, state As RadioButtonState)

参数

g
Graphics

用于绘制选项按钮的 Graphics

glyphLocation
Point

Point,用于绘制选项按钮标志符号的位置。

textBounds
Rectangle

要在其中绘制 radioButtonTextRectangle

radioButtonText
String

要在选项按钮上绘制的 String

font
Font

要应用于 radioButtonTextFont

focused
Boolean

若要绘制一个聚焦框,则为 true;否则为 false

state
RadioButtonState

RadioButtonState 值之一,它指定选项按钮的可视状态。

示例

下面的代码示例使用 DrawRadioButton(Graphics, Point, Rectangle, String, Font, Boolean, RadioButtonState) 自定义控件 OnPaint 方法中的方法在鼠标指针的位置确定的状态中绘制选项按钮。 此代码示例是为类提供的大型示例的 RadioButtonRenderer 一部分。

    // Draw the radio button in the current state.
protected:
    virtual void OnPaint(PaintEventArgs^ e) override
    {
        __super::OnPaint(e);

        RadioButtonRenderer::DrawRadioButton(e->Graphics,
            ClientRectangle.Location, TextRectangle, this->Text,
            this->Font, clicked, state);
    }

    // Draw the radio button in the checked or unchecked state.
protected:
    virtual void OnMouseDown(MouseEventArgs^ e) override
    {
        __super::OnMouseDown(e);

        if (!clicked)
        {
            clicked = true;
            this->Text = "Clicked!";
            state = RadioButtonState::CheckedPressed;
            Invalidate();
        }
        else
        {
            clicked = false;
            this->Text = "Click here";
            state = RadioButtonState::UncheckedNormal;
            Invalidate();
        }
    }
// Draw the radio button in the current state.
protected override void OnPaint(PaintEventArgs e)
{
    base.OnPaint(e);

    RadioButtonRenderer.DrawRadioButton(e.Graphics,
        ClientRectangle.Location, TextRectangle, this.Text,
        this.Font, clicked, state);
}

// Draw the radio button in the checked or unchecked state.
protected override void OnMouseDown(MouseEventArgs e)
{
    base.OnMouseDown(e);

    if (!clicked)
    {
        clicked = true;
        this.Text = "Clicked!";
        state = RadioButtonState.CheckedPressed;
        Invalidate();
    }
    else
    {
        clicked = false;
        this.Text = "Click here";
        state = RadioButtonState.UncheckedNormal;
        Invalidate();
    }
}
' Draw the radio button in the current state.
Protected Overrides Sub OnPaint(ByVal e As PaintEventArgs)
    MyBase.OnPaint(e)
    RadioButtonRenderer.DrawRadioButton(e.Graphics, _
        Me.ClientRectangle.Location, TextRectangle, Me.Text, _
        Me.Font, clicked, state)
End Sub

' Draw the radio button in the checked or unchecked state.
Protected Overrides Sub OnMouseDown(ByVal e As MouseEventArgs)
    MyBase.OnMouseDown(e)

    If Not clicked Then
        clicked = True
        Me.Text = "Clicked!"
        state = RadioButtonState.CheckedPressed
        Invalidate()
    Else
        clicked = False
        Me.Text = "Click here"
        state = RadioButtonState.UncheckedNormal
        Invalidate()
    End If

End Sub

注解

如果在操作系统中启用了视觉样式,并且视觉样式应用于当前应用程序,则此方法将使用当前视觉样式绘制选项按钮。 否则,此方法将使用经典Windows样式绘制选项按钮。

适用于

DrawRadioButton(Graphics, Point, Rectangle, String, Font, TextFormatFlags, Boolean, RadioButtonState)

在指定状态下和指定位置,用指定文本和文本格式以及可选的聚焦框,绘制选项按钮控件(也称为单选按钮)。

public:
 static void DrawRadioButton(System::Drawing::Graphics ^ g, System::Drawing::Point glyphLocation, System::Drawing::Rectangle textBounds, System::String ^ radioButtonText, System::Drawing::Font ^ font, System::Windows::Forms::TextFormatFlags flags, bool focused, System::Windows::Forms::VisualStyles::RadioButtonState state);
public static void DrawRadioButton (System.Drawing.Graphics g, System.Drawing.Point glyphLocation, System.Drawing.Rectangle textBounds, string radioButtonText, System.Drawing.Font font, System.Windows.Forms.TextFormatFlags flags, bool focused, System.Windows.Forms.VisualStyles.RadioButtonState state);
public static void DrawRadioButton (System.Drawing.Graphics g, System.Drawing.Point glyphLocation, System.Drawing.Rectangle textBounds, string? radioButtonText, System.Drawing.Font? font, System.Windows.Forms.TextFormatFlags flags, bool focused, System.Windows.Forms.VisualStyles.RadioButtonState state);
static member DrawRadioButton : System.Drawing.Graphics * System.Drawing.Point * System.Drawing.Rectangle * string * System.Drawing.Font * System.Windows.Forms.TextFormatFlags * bool * System.Windows.Forms.VisualStyles.RadioButtonState -> unit
Public Shared Sub DrawRadioButton (g As Graphics, glyphLocation As Point, textBounds As Rectangle, radioButtonText As String, font As Font, flags As TextFormatFlags, focused As Boolean, state As RadioButtonState)

参数

g
Graphics

用于绘制选项按钮的 Graphics

glyphLocation
Point

Point,用于绘制选项按钮标志符号的位置。

textBounds
Rectangle

要在其中绘制 radioButtonTextRectangle

radioButtonText
String

要在选项按钮上绘制的 String

font
Font

要应用于 radioButtonTextFont

flags
TextFormatFlags

TextFormatFlags 值的按位组合。

focused
Boolean

若要绘制一个聚焦框,则为 true;否则为 false

state
RadioButtonState

RadioButtonState 值之一,它指定选项按钮的可视状态。

注解

如果在操作系统中启用了视觉样式,并且视觉样式应用于当前应用程序,则此方法将使用当前视觉样式绘制选项按钮。 否则,此方法将使用经典Windows样式绘制选项按钮。

适用于

DrawRadioButton(Graphics, Point, Rectangle, String, Font, Image, Rectangle, Boolean, RadioButtonState)

在指定状态下和指定位置,用指定文本和图像以及可选的聚焦框,绘制选项按钮控件(也称为单选按钮)。

public:
 static void DrawRadioButton(System::Drawing::Graphics ^ g, System::Drawing::Point glyphLocation, System::Drawing::Rectangle textBounds, System::String ^ radioButtonText, System::Drawing::Font ^ font, System::Drawing::Image ^ image, System::Drawing::Rectangle imageBounds, bool focused, System::Windows::Forms::VisualStyles::RadioButtonState state);
public static void DrawRadioButton (System.Drawing.Graphics g, System.Drawing.Point glyphLocation, System.Drawing.Rectangle textBounds, string radioButtonText, System.Drawing.Font font, System.Drawing.Image image, System.Drawing.Rectangle imageBounds, bool focused, System.Windows.Forms.VisualStyles.RadioButtonState state);
public static void DrawRadioButton (System.Drawing.Graphics g, System.Drawing.Point glyphLocation, System.Drawing.Rectangle textBounds, string? radioButtonText, System.Drawing.Font? font, System.Drawing.Image image, System.Drawing.Rectangle imageBounds, bool focused, System.Windows.Forms.VisualStyles.RadioButtonState state);
static member DrawRadioButton : System.Drawing.Graphics * System.Drawing.Point * System.Drawing.Rectangle * string * System.Drawing.Font * System.Drawing.Image * System.Drawing.Rectangle * bool * System.Windows.Forms.VisualStyles.RadioButtonState -> unit
Public Shared Sub DrawRadioButton (g As Graphics, glyphLocation As Point, textBounds As Rectangle, radioButtonText As String, font As Font, image As Image, imageBounds As Rectangle, focused As Boolean, state As RadioButtonState)

参数

g
Graphics

用于绘制选项按钮的 Graphics

glyphLocation
Point

Point,用于绘制选项按钮标志符号的位置。

textBounds
Rectangle

要在其中绘制 radioButtonTextRectangle

radioButtonText
String

要在选项按钮上绘制的 String

font
Font

要应用于 radioButtonTextFont

image
Image

要在选项按钮上绘制的 Image

imageBounds
Rectangle

要在其中绘制 imageRectangle

focused
Boolean

若要绘制一个聚焦框,则为 true;否则为 false

state
RadioButtonState

RadioButtonState 值之一,它指定选项按钮的可视状态。

注解

如果在操作系统中启用了视觉样式,并且视觉样式应用于当前应用程序,则此方法将使用当前视觉样式绘制选项按钮。 否则,此方法将使用经典Windows样式绘制选项按钮。

适用于

DrawRadioButton(Graphics, Point, Rectangle, String, Font, TextFormatFlags, Image, Rectangle, Boolean, RadioButtonState)

在指定状态下和指定位置,用指定文本、文本格式、图像和可选的聚焦框,绘制选项按钮控件(也称为单选按钮)。

public:
 static void DrawRadioButton(System::Drawing::Graphics ^ g, System::Drawing::Point glyphLocation, System::Drawing::Rectangle textBounds, System::String ^ radioButtonText, System::Drawing::Font ^ font, System::Windows::Forms::TextFormatFlags flags, System::Drawing::Image ^ image, System::Drawing::Rectangle imageBounds, bool focused, System::Windows::Forms::VisualStyles::RadioButtonState state);
public static void DrawRadioButton (System.Drawing.Graphics g, System.Drawing.Point glyphLocation, System.Drawing.Rectangle textBounds, string radioButtonText, System.Drawing.Font font, System.Windows.Forms.TextFormatFlags flags, System.Drawing.Image image, System.Drawing.Rectangle imageBounds, bool focused, System.Windows.Forms.VisualStyles.RadioButtonState state);
public static void DrawRadioButton (System.Drawing.Graphics g, System.Drawing.Point glyphLocation, System.Drawing.Rectangle textBounds, string? radioButtonText, System.Drawing.Font? font, System.Windows.Forms.TextFormatFlags flags, System.Drawing.Image image, System.Drawing.Rectangle imageBounds, bool focused, System.Windows.Forms.VisualStyles.RadioButtonState state);
static member DrawRadioButton : System.Drawing.Graphics * System.Drawing.Point * System.Drawing.Rectangle * string * System.Drawing.Font * System.Windows.Forms.TextFormatFlags * System.Drawing.Image * System.Drawing.Rectangle * bool * System.Windows.Forms.VisualStyles.RadioButtonState -> unit
Public Shared Sub DrawRadioButton (g As Graphics, glyphLocation As Point, textBounds As Rectangle, radioButtonText As String, font As Font, flags As TextFormatFlags, image As Image, imageBounds As Rectangle, focused As Boolean, state As RadioButtonState)

参数

g
Graphics

用于绘制选项按钮的 Graphics

glyphLocation
Point

Point,用于绘制选项按钮标志符号的位置。

textBounds
Rectangle

要在其中绘制 radioButtonTextRectangle

radioButtonText
String

要在选项按钮上绘制的 String

font
Font

要应用于 radioButtonTextFont

flags
TextFormatFlags

TextFormatFlags 值的按位组合。

image
Image

要在选项按钮上绘制的 Image

imageBounds
Rectangle

要在其中绘制 imageRectangle

focused
Boolean

若要绘制一个聚焦框,则为 true;否则为 false

state
RadioButtonState

RadioButtonState 值之一,它指定选项按钮的可视状态。

注解

如果在操作系统中启用了视觉样式,并且视觉样式应用于当前应用程序,则此方法将使用当前视觉样式绘制选项按钮。 否则,此方法将使用经典Windows样式绘制选项按钮。

适用于