wpf的 System.Windows.Shapes.Path怎么用?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了wpf的 System.Windows.Shapes.Path怎么用?相关的知识,希望对你有一定的参考价值。
wpf的 c#
System.Windows.Shapes.Path对象 怎么存 成 System.IO.FileStream类型?
private void SavePathtoFile(Path path)
string pathData = path.Data.ToString();
using (System.IO.FileStream fStream = new System.IO.FileStream("Path.dat", System.IO.FileMode.Create))
UTF8Encoding convert = new UTF8Encoding();
fStream.Seek(0, System.IO.SeekOrigin.End);
fStream.Write(convert.GetBytes(pathData), 0, pathData.ToArray().Length);
本回答被提问者和网友采纳
以上是关于wpf的 System.Windows.Shapes.Path怎么用?的主要内容,如果未能解决你的问题,请参考以下文章