C # - User GUI

So, over the years I have seen quite a few C # and VB applications that have a user interface design. One example that I can cite is the DayZCommander (C #) application, which looks like this:

enter image description here

I was interested because I wanted to start creating login forms that look like this (note that this is just a Photoshop rendering):

enter image description here

And just use it for the overall shape design.

If you can give me some information or an answer on this topic, please do.

Thanks.

+8
user-interface c # custom-controls
source share
1 answer

First of all, you will need to use WPF to easily achieve such results (probably with WinForms, but it will be very difficult).

You can also use third-party controls such as MahApps Metro (also available using NuGet). Here is an example of what you can end up with:

enter image description here

You also have tools like Microsoft Expression Blend that make it easy to create animated user interfaces / user templates. but sooner or later you can dive into XAML to create your own customizable management templates, but that is beyond the scope of this answer (there are a lot of good tutorials on the Internet).

+5
source share

All Articles