Hi
i try get template from element and set to another element, i get template this successful but i cant set this to
other element
this is my code
String myXAML = System.Windows.Markup.XamlWriter.Save(TstExp.Template); var xamlStream = new MemoryStream(System.Text.Encoding.Default.GetBytes(myXAML)); var myExpander = new Expander { Template = System.Windows.Markup.XamlReader.Load(xamlStream), Header = "Test Expander" }; StcEpanderContainer.Children.Add(myExpander);