如何使用wpf
中的applypropertyvalue设置字体大小 ts.ApplyPropertyValue(TextElement.FontSizeProperty,new ?? );
答案 0 :(得分:2)
尝试:
ts.ApplyPropertyValue(TextElement.FontSizeProperty, (double)24);
或
ts.ApplyPropertyValue(TextElement.FontSizeProperty, 24.0);
任何一种方法都可以正常工作。