gpt4 book ai didi

c# - 在 silverlight 中从字符串转换为数据?

转载 作者:行者123 更新时间:2023-11-30 14:39:03 26 4
gpt4 key购买 nike

基本上我正在尝试这样做:

Path path = new Path( ); 

string sData = "M 250,40 L200,20 L200,60 Z";

var converter = TypeDescriptor.GetConverter( typeof( Geometry ) );
path.Data = ( Geometry )converter.ConvertFrom( sData );

但它不会编译,silverlight 似乎没有 TypeDescriptor 类...

最佳答案

试试这个:-

  Path path = XamlReader.Load("<Path Data=\"M 250,40 L200,20 L200,60\" />") as Path;

编辑

应该是:

  public static GeneratePath(string data)
{
string pathEnvelope = "<Path xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\" Data=\"{0}\"/>")
return XamlReader.Load(String.Format(pathEnvelope, data)) as Path;
}

用法:-

  string data = "M 250,40 L200,20 L200,60";

Path path = GeneratePath(data);

请参阅后续问题:xaml parse exception when attempting to load xaml from codebehind

关于c# - 在 silverlight 中从字符串转换为数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6922764/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com