I'm kind of stuck on this one, I know it can be done but unsure the steps needed.

I want to create a fully custom User Interface design for an application I'm having to create. I can change the form background and all that but this is a bit more complex.

An example image is shown below of the kind of change I'm referring to, as you can see its a rather big change compared to the current UI used by most applications. Example UI image

link|improve this question

It is likely to be easier in WPF than WinForms. Is this supposted to be WinForm, or can you choose WPF ? – driis May 31 '11 at 12:48
1  
sadly has to be winform – Neo May 31 '11 at 12:50
2  
It's almost impossible with WinForms but very easy with WPF. – ErickPetru May 31 '11 at 12:51
3  
Maybe I'm a bit cynical, but whenever I see a UI like that I immediately think "This app is probably a buggy piece of junk that instead of fixing they decided to cover with gradients and drop shadows" – Isak Savo May 31 '11 at 12:51
1  
what about a third party control toolkit? devexpress.com/Products/Free/NetOffer/#asp devexpress has some free fancy ones – Michel May 31 '11 at 13:01
show 2 more comments
feedback

3 Answers

up vote 0 down vote accepted

Since you can't use WPF (why?!), you'll need to create custom classes for all your controls, inheriting and overriding OnPaint. This will be a hard job done all with C# code.

Here is a tutorial showing many steps to create custom UI for WinForms.

link|improve this answer
outside of my control part of the contract nothing to do with me :( – Neo May 31 '11 at 12:57
Thanks great tutorial site, sadly the site has many 404's but managed to hack and slash my way around :) – Neo May 31 '11 at 13:48
feedback

Have a look at Windows Presentation Foundation (WPF) which is designed to allow the creation of rich graphical UI applications like the example you gave. It focuses on separating the front end (graphical UI) from the logic behind (which you can code in C#. VB etc.)

It's very different to forms in the way you layout your UI (using a form of XML) but it's all built around the .Net framework which means there will be some level of familiarity.

Check out these links to get started:

http://www.wpftutorial.net/WPFIntroduction.html

http://www.wpf-training-guide.com/

link|improve this answer
feedback

I'd advise you to use WPF as your question doesn't seem to limit itself to using WinForms. It has a lot of the effects I can see in this screenshot out of the box which would be more difficult to implement using WinForms.

Every reuseable control can be created separately and reused later on. WPF is highly extendable and you can compose new controls out of existing controls. You might create the 'up-down' control by using existing button controls, and perhaps you can already find an existing one to suit your needs.

Styling is done separately in WPF, so you can apply your custom style by using templates.

UPDATE:

When you HAVE to use winforms the easiest solution would be to go for a fixed size window, and let your designer create images for all the buttons and such. ... Old school slicing techniques.

You basically have to decompose the design so you can reuse it as much as possible. E.g. You will have a couple of button backgrounds depicting their various states. (down/up/hover) The glow on top of the track information can be stored in a separate image, so it can be applied 'on top' of the text.

link|improve this answer
Yeah that's what I figured :( – Neo May 31 '11 at 12:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.