I have a custom XAML User Control like this:
<UserControl x:Class="CheckPoint.Modules.Beach.Beach_Shape"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300">
<Grid>
<Polygon Name="Shape"></Polygon>
</Grid>
</UserControl>
I want xaml serialize it with XamlWrite.Save and then reload it with XamlReader.Load.
XmlReader reader = XmlReader.Create(new StringReader(xml));
UserControl uc=(UserControl)XamlReader.Load(reader);
myGrid.Children.Add(uc);
"uc" is correctly visualized on myGrid, but "uc" Object is not logical correct, becouse the Shape element is not correctly loaded, for example it has not Background, Stroke or Points setted even though it are in xaml.
I try to reload it with
Shape=myGrid.Findname("Shape");
but it doesn't work too.
So, where is my mistake?