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.