If you really want to design your forms with WPF the way you used to in WinForms, simply use a Canvas
as your main container and place your controls with absolute coordinates.
I don't know if MS C# Express 2008 has a visual editor, so you don't have to tweak any number.
But by using a Canvas
you loose an important feature that is resizable forms. If you position your controls absolutely, there is no way to adapt the content to the window size.
That is where WPF has things in common to designing websites, but with more flexibility. You have to learn all the available panels and when to use them. My favorite is DockPanel
often used as to topmost panel. Then you nest different panels to build your form.
There are usually very few dimensions to set. I mostly set MinWidth
for columns or MinHeight
for rows. Each control has its margins set in styles, so everything layouts smoothly.
If you have a concrete problem to layout, I'll be happy to assist you.