-1

I'm looking for an control or something like to About box Java Swing in C#.

UPDATE as in the pic:

enter image description here

Kamil Budziewski
  • 22,699
  • 14
  • 85
  • 105
Jack
  • 16,276
  • 55
  • 159
  • 284

1 Answers1

3

if you're using VS, choose in menu: project > add new item > about box in visual studio installed templates.

and then:

 var aboutBox = new AboutBox1();
 aboutBox.ShowDialog();

I hope this help!

Kakashi
  • 2,165
  • 14
  • 19