Suppose I create two metro apps,

one with an HTML view which has

<input type="text"/>

another with a XAML based view

<TextBox/>

Does the underylying implementation map to the same code to render both controls? Will they have 100% identical behaviour?

link|improve this question

79% accept rate
feedback

1 Answer

up vote 13 down vote accepted

No. The Xaml rendering stack is separate from the HTML rendering stack. Now if you go low enough, they use the same code path - for instance both the HTML rendering stack and the Xaml rendering stack are rendered through the same display driver logic. But the core rendering is separate.

link|improve this answer
Very useful to know. I must have missed this in the BUILD 2011 canned 'casts. Thanks. – Bob Riemersma Oct 3 '11 at 19:51
5  
Many of the HTML controls are implemented in HTML/CSS themselves. If you look in ...\winjs\js\controls.js you will find some of them. – Steve Rowe Oct 3 '11 at 21:17
@Bob: I believe that every one of the presentations that discuss the UI stack has always shown that Xaml and HTML were two different rendering stacks. – Larry Osterman Oct 4 '11 at 2:01
@Larry: Yes, I know that. But many of those same diagrams show IE and .Net/SL sitting on top of the Kernel too. What's the truth about WinRT here? Surely it sits on top of much of Win32 as well, barring GDI and other exceptions of course. I assumed the diagrams were largely marketing. – Bob Riemersma Oct 4 '11 at 2:51
1  
It depends on the API. Some of the APIs are brand new, top to bottom. Others are written on top of existing APIs. There were some slight errors (.Net not being there under C#, and the bottom layer being called "kernel services") but nothing huge. – Larry Osterman Oct 4 '11 at 5:31
feedback

Your Answer

 
or
required, but never shown

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