1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| '#############################################
'############ Création des barres ############
'#############################################
'' Déclaraction
Dim BarreGauche As System.Drawing.Image = Nothing
Dim BarreDroite As System.Drawing.Image = Nothing
'' Récupération des images
Try
BarreGauche = System.Drawing.Image.FromFile(Application.StartupPath & "\image\BarreDeplacer_Bleu.png")
BarreDroite = System.Drawing.Image.FromFile(Application.StartupPath & "\image\BarreAfficherMasquer_Rouge.png")
Catch ex As Exception
MsgBox("Impossible de charger les images", MsgBoxStyle.Critical, "Erreur")
Application.Exit()
End Try
'' Ajustement des pictureBox
pictBarreGauche.Height = BarreGauche.Height
pictBarreGauche.Width = BarreGauche.Width
pictBarreGauche.Image = BarreGauche
pictBarreDroite.Height = BarreDroite.Height
pictBarreDroite.Width = BarreDroite.Width
pictBarreDroite.Image = BarreDroite |
Partager