C # button with text and down arrow

Is it possible to create a button with WinForms with the text "Details" and then a down arrow next to it.

This is not vital for my program, but I personally think that it looks better for the user, especially in dialog boxes that expand to show more error details.

+5
source share
2 answers

The following code will give your button the word "Details" with an arrow pointing down next to it.

Button1.Text = "Details " + char.ConvertFromUtf32(8595);
+10
source

, expand/collaspe. png " ", , .

+3

All Articles