Good day, gentlemen, I have a game on which buttons appear and the user should have time to press them and for that he will get points, the buttons appear and disappear, each button has its own image and it is necessary that there is no frame around this image. How it all looks like the source

While the application is running

  • You can use the Panel instead of Button . - Alexander Petrov

1 answer 1

It would be better to stick the code instead of the picture for clarity.

If you need to remove the frame from the button, then:

 button.FlatAppearance.BorderSize = 0; button.FlatStyle = FlatStyle.Flat; 
  • Sorry, I thought that the code here is not so important, but it helped :) PS The best forum. - O_o