For example, how to make such buttons so that they look like this? alt text

Where can I read about it?

  • Not enough balls to leave a comment in question. What platform are we talking about? WinForms or WPF. If you have not yet begun to make the interface, then it is better to do it on WPF, there such things are done easily. - Marat Batalandabad

2 answers 2

You can create your own component inherited from Button . But another option is to use CheckBox . To do this, set the Appearance property to the Button . And play FlatStyle with the FlatStyle properties (set in a Popup , most likely in my opinion) and FlatAppearance .

    Creating a second window application in C # - look at this link, I hope it will help you.