如何使用applypropertyvalue设置字体大小属性

时间:2013-12-13 15:44:45

标签: c# .net wpf

如何使用wpf

中的applypropertyvalue设置字体大小
 ts.ApplyPropertyValue(TextElement.FontSizeProperty,new ?? );

1 个答案:

答案 0 :(得分:2)

尝试:

ts.ApplyPropertyValue(TextElement.FontSizeProperty, (double)24);

ts.ApplyPropertyValue(TextElement.FontSizeProperty, 24.0);

任何一种方法都可以正常工作。