xamlreader

Creating a grid from string using XamlReader

I have a string representation of a XAML Grid like this: <Grid xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"&gt; <Canvas Background="Yellow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"&gt; <Label Content="textik" /> </Canvas> </Grid> What I need to do is create a Grid object ou...