Partager via


Comment : afficher une page Web à partir d'un contrôle LinkLabel Windows Forms (Visual Basic)

Mise à jour : novembre 2007

Cet exemple affiche une page Web dans le navigateur par défaut lorsque l'utilisateur clique sur un contrôle LinkLabel Windows Forms.

Exemple

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e _
As System.EventArgs) Handles MyBase.Load
    LinkLabel1.Text = "Click here to get more info."
    LinkLabel1.Links.Add(6, 4, "www.microsoft.com")
End Sub
Private Sub LinkLabel1_LinkClicked(ByVal sender As System.Object, ByVal _
e As System.Windows.Forms.LinkLabelLinkClickedEventArgs) Handles _
LinkLabel1.LinkClicked
    System.Diagnostics.Process.Start(e.Link.LinkData.ToString())
End Sub

Compilation du code

Cet exemple nécessite les éléments suivants :

  • Un Windows Form nommé Form1.

  • Un contrôle LinkLabel nommé LinkLabel1.

  • une connexion Internet active.

Sécurité

L'appel à la méthode Start requiert une confiance totale. Pour plus d'informations, consultez SecurityException.

Voir aussi

Référence

LinkLabel

Autres ressources

LinkLabel, contrôle (Windows Forms)