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"> <Canvas Background="Yellow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"> <Label Content="textik" /> </Canvas> </Grid> What I need to do is create a Grid object ou...