How to leave the interface the way you want? [closed]

-2

Hello, I started to study C # (and programming in general) a short time and when I got to the Graphical Interface part I saw that the code results were square boxes with no expressions. I would like to know how to basically do as you want, put pictures in buttons, leave the text boxes round or colored ... these things do you understand?!

    
asked by anonymous 08.01.2017 / 07:24

1 answer

1

These "square boxes" are applications developed in the Console mode .

For graphical interface applications, windows, forms, and buttons, look for creating Windows Forms projects in Visual Studio. The only problem is that WinForms is already well outdated and it is difficult to create more elaborate interfaces with it.

If you have reference material, you should start looking for WPF (Windows Presentation Foundation) projects , a Microsoft technology that uses XAML as opposed to conventional Windows Forms code - for creating the GUI.

    
08.01.2017 / 09:24