Guest User

Untitled

a guest
Dec 11th, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. if(arrowLabel.Text == a) {arrowLabel.Location = new Point(arrowLabel.Location.X - 1, arrowLabel.Location.Y); positionLabel.Text = "Position : {" + arrowLabel.Location.X.ToString() + ", " + arrowLabel.Location.Y.ToString() + "}";}
  2. if(arrowLabel.Text == b) {arrowLabel.Location = new Point(arrowLabel.Location.X + 1, arrowLabel.Location.Y); positionLabel.Text = "Position : {" + arrowLabel.Location.X.ToString() + ", " + arrowLabel.Location.Y.ToString() + "}"; }
  3. if(arrowLabel.Text == c) {arrowLabel.Location = new Point(arrowLabel.Location.X, arrowLabel.Location.Y - 1); positionLabel.Text = "Position : {" + arrowLabel.Location.X.ToString() + ", " + arrowLabel.Location.Y.ToString() + "}"; }
  4. if(arrowLabel.Text == d) {arrowLabel.Location = new Point(arrowLabel.Location.X, arrowLabel.Location.Y + 1); positionLabel.Text = "Position : {" + arrowLabel.Location.X.ToString() + ", " + arrowLabel.Location.Y.ToString() + "}"; }
Add Comment
Please, Sign In to add comment