Share via


VisualStyleElement.ToolTip.Balloon.Link Özellik

Tanım

Bağlantı içeren balon Araç İpucu'nu temsil eden görsel stil öğesini alır.

public:
 static property System::Windows::Forms::VisualStyles::VisualStyleElement ^ Link { System::Windows::Forms::VisualStyles::VisualStyleElement ^ get(); };
public static System.Windows.Forms.VisualStyles.VisualStyleElement Link { get; }
static member Link : System.Windows.Forms.VisualStyles.VisualStyleElement
Public Shared ReadOnly Property Link As VisualStyleElement

Özellik Değeri

VisualStyleElement Bağlantı içeren balon Araç İpucu'nu temsil eden bir.

Örnekler

Aşağıdaki kod örneği, özelliği tarafından Link döndürülen ile VisualStyleElement nasıl oluşturulacağını VisualStyleRenderer gösterir. Bu örneği çalıştırmak için windows formuna yapıştırın. Formun Paint olayını işleyip olarak geçirerek olay işleme yönteminden Paint yöntemini çağırın eDrawVisualStyleElementToolTipBalloon2PaintEventArgs.

public void DrawVisualStyleElementToolTipBalloon2(PaintEventArgs e)
{
    if (VisualStyleRenderer.IsElementDefined(
        VisualStyleElement.ToolTip.Balloon.Link))
    {
        VisualStyleRenderer renderer =
             new VisualStyleRenderer(VisualStyleElement.ToolTip.Balloon.Link);
        Rectangle rectangle1 = new Rectangle(10, 50, 50, 50);
        renderer.DrawBackground(e.Graphics, rectangle1);
        e.Graphics.DrawString("VisualStyleElement.ToolTip.Balloon.Link",
             this.Font, Brushes.Black, new Point(10, 10));
    }
    else
        e.Graphics.DrawString("This element is not defined in the current visual style.",
             this.Font, Brushes.Black, new Point(10, 10));
}
Public Sub DrawVisualStyleElementToolTipBalloon2(ByVal e As PaintEventArgs)
    If (VisualStyleRenderer.IsElementDefined( _
     VisualStyleElement.ToolTip.Balloon.Link)) Then
        Dim renderer As New VisualStyleRenderer _
          (VisualStyleElement.ToolTip.Balloon.Link)
        Dim rectangle1 As New Rectangle(10, 50, 50, 50)
        renderer.DrawBackground(e.Graphics, rectangle1)
        e.Graphics.DrawString("VisualStyleElement.ToolTip.Balloon.Link", _
          Me.Font, Brushes.Black, New Point(10, 10))
    Else
        e.Graphics.DrawString("This element is not defined in the current visual style.", _
          Me.Font, Brushes.Black, New Point(10, 10))
    End If
End Sub

Açıklamalar

özelliği tarafından döndürülen öğesini VisualStyleElementLink kullanarak bir VisualStyleRendereroluşturabilirsiniz.

Şunlara uygulanır