我从一个函数中检索到名为“oldf”的FormattedText。
FormattedText oldf = GetFormattedText();
我想使用oldf来创建除文本之外完全相同的newf。
我尝试过类似的东西:
FormattedText newf = new FormattedText("myNewText",oldf.CultureInfo,oldf.FlowDirection,oldf.TypeFace,
oldf.EmSize, oldf.Foreground);
但没有成功。
答案 0 :(得分:0)