2

我有一个 Windows.UI.Xaml.Shape.Path 对象。如何生成与该 Path 对象对应的 xaml 字符串。

输入:路径对象

所需输出:“路径数据=“M 120,10 200,L300”行程=“黑色”“”

或者有什么方法可以从路径边界属性计算路径数据?

4

1 回答 1

3

尝试这个

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);
于 2012-08-01T05:32:13.170 回答