createToXAML ?

Is there any (or will there be any) way of extracting XAML/XML from the plugin? It could be useful to be able to process the contents through the XML DOM in some scenarios.

Tim

[229 byte] By [TimFavour] at [2008-1-31]
# 1

No, we have no current plans to serialize the existing tree of objects to XAML, so don't expect a createToXaml for quite a while.

-mark
Program Manager
Microsoft
This post is provided "as-is"

MarkRideout at 2007-9-5 > top of Msdn Tech,Silverlight (formerly WPF/E),Silverlight (formerly WPF/E) General Discussion...
# 2

You kinda can... I didn't do serious research in that direction, but it is possible to iterate through children of Canvas and get properties of each node in javascript. toString() for the node returns node type, like : 'Canvas'. I 'd expect the ammount of code to handle full wpf/e xaml spec to be pretty big thou.

nooneimportant at 2007-9-5 > top of Msdn Tech,Silverlight (formerly WPF/E),Silverlight (formerly WPF/E) General Discussion...