Since XAML gets compiled, there should be no difference in execution of code like this.
Winforms (code like):
Form formPeter = new Form(); Textbox textbox = new Textbox(); Label l1 = new Label1();
Xaml does not get parsed at runtime, as I thought… 🙂
But what about rendering/execution of big forms with lot of controls? Which technology is faster?
Which Technology is faster? I’m afraid your question doesn’t really have a simple answer.
Your comment about XAML not being parsed at runtime is both true and false. While the XAML is not parsed a normalized binary version of it (embedded as a resource in your application) called BAML is parsed at runtime. To say DirectX is faster than GDI is also something of a simplification – WPF and GDI-based rendering technologies just have different performance characteristics. For example WPF uses a retained rendering mode, whereas WinForms and other GDI-based technologies do not. WPF objects tend to be much heavier-weight because they support many many many more properties than their winforms counterparts. We have decades of knowledge on how to make GDI go pretty fast, and only a relatively short time with WPF and XAML.
WPF is sufficiently fast for writing applications, but you need to be constantly vigilant that your element count doesn’t blow out (by creating overly complicated templates for example, and then having them repeated hundreds or thousands of times in your UI). Also WPF performs differently on different graphics hardware (since it calls down to DirectX internally). 2D content should be fine in WPF, even if it is totally rendered in software (say the way it would on a virtual machine) but animated, anti-aliased 3D with lots of elements requires real GPU power. As time moves on and graphics hardware becomes more powerful and prevalent and knowledge about how to performance-tune WPF improves we should see WPF pull further ahead (assuming it is slightly so now…for some scenarios…sometimes). So I guess the answer is ‘it depends’.