Utiliser les touches directionnelles en .net
Résolu/Fermé
Alvin1614
Messages postés
107
Date d'inscription
lundi 24 avril 2017
Statut
Membre
Dernière intervention
22 décembre 2021
-
14 avril 2018 à 18:25
cs_Le Pivert Messages postés 7904 Date d'inscription jeudi 13 septembre 2007 Statut Contributeur Dernière intervention 14 août 2024 - 28 avril 2018 à 16:10
cs_Le Pivert Messages postés 7904 Date d'inscription jeudi 13 septembre 2007 Statut Contributeur Dernière intervention 14 août 2024 - 28 avril 2018 à 16:10
A voir également:
- Utiliser les touches directionnelles en .net
- Utiliser chromecast - Guide
- Touches rémanentes c'est quoi - Guide
- Paint net - Télécharger - Dessin & Illustration
- Net framework 4.0 - Télécharger - Divers Utilitaires
- Comment utiliser l'ia - Accueil - Guide Intelligence artificielle
2 réponses
yg_be
Messages postés
23337
Date d'inscription
lundi 9 juin 2008
Statut
Contributeur
Dernière intervention
18 novembre 2024
Ambassadeur
1 551
14 avril 2018 à 21:49
14 avril 2018 à 21:49
bonsoir, peut-être:
Me.PictureBox1.Location = New Point(Me.PictureBox1.Location.X , Me.PictureBox1.Location.Y -1)
cs_Le Pivert
Messages postés
7904
Date d'inscription
jeudi 13 septembre 2007
Statut
Contributeur
Dernière intervention
14 août 2024
729
28 avril 2018 à 16:10
28 avril 2018 à 16:10
Bonjour,
Comme ceci:
Voilà
Comme ceci:
Option Strict On Public Class Form1 Private Sub Form1_KeyDown(ByVal sender As System.Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles MyBase.KeyDown Select Case e.KeyCode Case Keys.Down If Me.PictureBox1.Location.Y = Me.Height - PictureBox1.Height Then Exit Sub Me.PictureBox1.Location = New System.Drawing.Point(Me.PictureBox1.Location.X, Me.PictureBox1.Location.Y + 1) Case Keys.Up If Me.PictureBox1.Location.Y = 0 Then Exit Sub Me.PictureBox1.Location = New System.Drawing.Point(Me.PictureBox1.Location.X, Me.PictureBox1.Location.Y - 1) Case Keys.Left If Me.PictureBox1.Location.X = 0 Then Exit Sub Me.PictureBox1.Location = New System.Drawing.Point(Me.PictureBox1.Location.X - 1, Me.PictureBox1.Location.Y) Case Keys.Right If Me.PictureBox1.Location.X = Me.Width - PictureBox1.Width Then Exit Sub Me.PictureBox1.Location = New System.Drawing.Point(Me.PictureBox1.Location.X + 1, Me.PictureBox1.Location.Y) End Select End Sub End Class
Voilà
14 avril 2018 à 22:04
ou
J'ai pas testé
28 avril 2018 à 11:04
Je ne peut donc tester vos solutions étant donné qu'il m'affiche : 'KeyCode' n'est pas un membre de 'System.EventArgs'.
28 avril 2018 à 11:14