I want to develope my first real WPF Desktop Application. It’s quite a lot of time since my last desktop application, which was developed with .NET 2.0 and Windows Forms. Since i have to develope a new Desktop Application, and i can take the advantage of .NET 4.0 i would really like to use WPF.
I am reading some online tutorial and documentation to choose the right way to do it, but i am a little lost with the new controls.
Basically i need a panel which show some textboxes and label above a datagrid.
Do you think that i can achieve such a result with gridpanel control ?
Thank you.

In WPF you usually use several different controls. Control composition in WPF is a major feature and you’ll gain a lot by knowing it and taking advantage of it.
When looking at your screen i divide it in two major parts:
– campi di ricerca
– resultati
For these two i’d use a Grid with two rows and one column.
The ricerca area could use a DockPanel with the header aligned at the top and aother Grid With Fill contents.
… and so on, so on.
My best advice is for you to learn about WPF Composition
Hope i’ve helped a little bit