var path = new Path();path.Data = Geometry.Parse("M 100,200 C 100,25 400,350 400,175 H 280");
Path.Data的类型为Geometry。使用 Reflector JustDecompile (eff Red Gate)
,我查看了其TypeConverterAttribute的Geometry定义(xaml序列化程序用于将type的值转换
string为
Geometry)。这使我指向了GeometryConverter。在检查实现时,我看到它用于
Geometry.Parse将路径的字符串值转换为Geometry实例。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)