How to display an arrow in a button? Winforms

How can I get this type of arrow in a button, as shown in this image link .

I need to get this type of arrow for UP, DOWN, LEFT and RIGHT.

+4
source share
2 answers

Use the button without text and set the image to an arrow.
You can use this image (just rotate it in the direction you need)

enter image description here

The result is as follows:

enter image description here

+5
source

You can also do this using UTF32 character values:

  Button1.Text = char.ConvertFromUtf32(0x2193);
  Button2.Text = char.ConvertFromUtf32(0x2191);

It gives: enter image description here

You can use bold if you want.

See U + 2190 for Unicode Character List

+3

All Articles