Hi I'm trying to serialize the RadRichTextBox control but I get the following error: "ambiguous match found."
this is my code
Canvas cvs = new Canvas();
RadRichTextBox rch = new RadRichTextBox();
regards
Nicola De Stefano
this is my code
Canvas cvs = new Canvas();
RadRichTextBox rch = new RadRichTextBox();
rch.Width = 100;
rch.Height = 100;
cvs.Children.Add(rch);
string str = System.Windows.Markup.XamlWriter.Save(cvs);
regards
Nicola De Stefano