我有一个 Windows.UI.Xaml.Shape.Path 对象。如何生成与该 Path 对象对应的 xaml 字符串。
输入:路径对象
所需输出:“路径数据=“M 120,10 200,L300”行程=“黑色”“”
或者有什么方法可以从路径边界属性计算路径数据?
我有一个 Windows.UI.Xaml.Shape.Path 对象。如何生成与该 Path 对象对应的 xaml 字符串。
输入:路径对象
所需输出:“路径数据=“M 120,10 200,L300”行程=“黑色”“”
或者有什么方法可以从路径边界属性计算路径数据?
尝试这个
string s_output = System.Windows.Markup.XamlWriter.Save(yourpath);
并重新加载使用
System.IO.StringReader stringReader = new System.IO.StringReader(s_output);
System.Xml.XmlReader xmlReader = System.Xml.XmlTextReader.Create(stringReader, new System.Xml.XmlReaderSettings());
Path yourpath= (Path)System.Windows.Markup.XamlReader.Load(xmlReader);