Aracılığıyla paylaş


RadioButtonRenderer.DrawRadioButton Yöntem

Tanım

Bir seçenek düğmesi denetimi (radyo düğmesi olarak da bilinir) çizer.

Aşırı Yüklemeler

DrawRadioButton(Graphics, Point, RadioButtonState)

Belirtilen durumda ve konumda bir seçenek düğmesi denetimi (radyo düğmesi olarak da bilinir) çizer.

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

Belirtilen durumda ve konumda, belirtilen metinle ve isteğe bağlı odak dikdörtgeniyle bir seçenek düğmesi denetimi (radyo düğmesi olarak da bilinir) çizer.

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

Belirtilen durumda ve konumda, belirtilen metin ve metin biçimlendirmesiyle ve isteğe bağlı odak dikdörtgeniyle bir seçenek düğmesi denetimi (radyo düğmesi olarak da bilinir) çizer.

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

Belirtilen durumda ve konumda, belirtilen metin ve görüntüyle ve isteğe bağlı odak dikdörtgeniyle bir seçenek düğmesi denetimi (radyo düğmesi olarak da bilinir) çizer.

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

Belirtilen durumda ve konumda bir seçenek düğmesi denetimi (radyo düğmesi olarak da bilinir) çizer; belirtilen metin, metin biçimlendirmesi ve görüntü ile; ve isteğe bağlı bir odak dikdörtgeni ile.

DrawRadioButton(Graphics, Point, RadioButtonState)

Belirtilen durumda ve konumda bir seçenek düğmesi denetimi (radyo düğmesi olarak da bilinir) çizer.

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)

Parametreler

g
Graphics

Graphics Seçenek düğmesini çizmek için kullanılır.

glyphLocation
Point

Point seçeneği düğmesinin karakteri çizin.

state
RadioButtonState

Seçenek düğmesinin RadioButtonState görsel durumunu belirten değerlerden biri.

Açıklamalar

İşletim sisteminde görsel stiller etkinleştirilirse ve geçerli uygulamaya görsel stilleri uygulanırsa, bu yöntem geçerli görsel stiliyle seçenek düğmesini çizer. Aksi takdirde, bu yöntem klasik Windows stiliyle seçenek düğmesini çizer.

Şunlara uygulanır

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

Belirtilen durumda ve konumda, belirtilen metinle ve isteğe bağlı odak dikdörtgeniyle bir seçenek düğmesi denetimi (radyo düğmesi olarak da bilinir) çizer.

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)

Parametreler

g
Graphics

Graphics Seçenek düğmesini çizmek için kullanılır.

glyphLocation
Point

Point seçeneği düğmesinin karakteri çizin.

textBounds
Rectangle

Çizecek Rectangle radioButtonText olan.

radioButtonText
String

String Seçenek düğmesiyle çizim yapmak için.

font
Font

Font için uygulanacak radioButtonText.

focused
Boolean

true odak dikdörtgeni çizmek için; aksi takdirde , false.

state
RadioButtonState

Seçenek düğmesinin RadioButtonState görsel durumunu belirten değerlerden biri.

Örnekler

Aşağıdaki kod örneği, fare işaretçisinin DrawRadioButton(Graphics, Point, Rectangle, String, Font, Boolean, RadioButtonState) konumu tarafından belirlenen durumda bir seçenek düğmesi çizmek için özel denetimin OnPaint yönteminde yöntemini kullanır. Bu kod örneği, sınıfı için RadioButtonRenderer sağlanan daha büyük bir örneğin parçasıdır.

    // 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

Açıklamalar

İşletim sisteminde görsel stiller etkinleştirilirse ve geçerli uygulamaya görsel stilleri uygulanırsa, bu yöntem geçerli görsel stiliyle seçenek düğmesini çizer. Aksi takdirde, bu yöntem klasik Windows stiliyle seçenek düğmesini çizer.

Şunlara uygulanır

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

Belirtilen durumda ve konumda, belirtilen metin ve metin biçimlendirmesiyle ve isteğe bağlı odak dikdörtgeniyle bir seçenek düğmesi denetimi (radyo düğmesi olarak da bilinir) çizer.

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)

Parametreler

g
Graphics

Graphics Seçenek düğmesini çizmek için kullanılır.

glyphLocation
Point

Point seçeneği düğmesinin karakteri çizin.

textBounds
Rectangle

Çizecek Rectangle radioButtonText olan.

radioButtonText
String

String Seçenek düğmesiyle çizim yapmak için.

font
Font

Font için uygulanacak radioButtonText.

flags
TextFormatFlags

Değerlerin bit düzeyinde birleşimi TextFormatFlags .

focused
Boolean

true odak dikdörtgeni çizmek için; aksi takdirde , false.

state
RadioButtonState

Seçenek düğmesinin RadioButtonState görsel durumunu belirten değerlerden biri.

Açıklamalar

İşletim sisteminde görsel stiller etkinleştirilirse ve geçerli uygulamaya görsel stilleri uygulanırsa, bu yöntem geçerli görsel stiliyle seçenek düğmesini çizer. Aksi takdirde, bu yöntem klasik Windows stiliyle seçenek düğmesini çizer.

Şunlara uygulanır

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

Belirtilen durumda ve konumda, belirtilen metin ve görüntüyle ve isteğe bağlı odak dikdörtgeniyle bir seçenek düğmesi denetimi (radyo düğmesi olarak da bilinir) çizer.

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)

Parametreler

g
Graphics

Graphics Seçenek düğmesini çizmek için kullanılır.

glyphLocation
Point

Point seçeneği düğmesinin karakteri çizin.

textBounds
Rectangle

Çizecek Rectangle radioButtonText olan.

radioButtonText
String

String Seçenek düğmesiyle çizim yapmak için.

font
Font

Font için uygulanacak radioButtonText.

image
Image

Image Seçenek düğmesiyle çizim yapmak için.

imageBounds
Rectangle

Çizecek Rectangle image olan.

focused
Boolean

true odak dikdörtgeni çizmek için; aksi takdirde , false.

state
RadioButtonState

Seçenek düğmesinin RadioButtonState görsel durumunu belirten değerlerden biri.

Açıklamalar

İşletim sisteminde görsel stiller etkinleştirilirse ve geçerli uygulamaya görsel stilleri uygulanırsa, bu yöntem geçerli görsel stiliyle seçenek düğmesini çizer. Aksi takdirde, bu yöntem klasik Windows stiliyle seçenek düğmesini çizer.

Şunlara uygulanır

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

Belirtilen durumda ve konumda bir seçenek düğmesi denetimi (radyo düğmesi olarak da bilinir) çizer; belirtilen metin, metin biçimlendirmesi ve görüntü ile; ve isteğe bağlı bir odak dikdörtgeni ile.

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)

Parametreler

g
Graphics

Graphics Seçenek düğmesini çizmek için kullanılır.

glyphLocation
Point

Point seçeneği düğmesinin karakteri çizin.

textBounds
Rectangle

Çizecek Rectangle radioButtonText olan.

radioButtonText
String

String Seçenek düğmesiyle çizim yapmak için.

font
Font

Font için uygulanacak radioButtonText.

flags
TextFormatFlags

Değerlerin bit düzeyinde birleşimi TextFormatFlags .

image
Image

Image Seçenek düğmesiyle çizim yapmak için.

imageBounds
Rectangle

Çizecek Rectangle image olan.

focused
Boolean

true odak dikdörtgeni çizmek için; aksi takdirde , false.

state
RadioButtonState

Seçenek düğmesinin RadioButtonState görsel durumunu belirten değerlerden biri.

Açıklamalar

İşletim sisteminde görsel stiller etkinleştirilirse ve geçerli uygulamaya görsel stilleri uygulanırsa, bu yöntem geçerli görsel stiliyle seçenek düğmesini çizer. Aksi takdirde, bu yöntem klasik Windows stiliyle seçenek düğmesini çizer.

Şunlara uygulanır