获取字符串变量的值

时间:2010-09-02 16:00:14

标签: c# wpf

如何在第二行中用字符串变量样式替换字符串文字 - “ErrorLabel”?仅供参考..样式名称将存储在xml文件中。

 string style = "ErrorLabel";
 Style styItem = LayoutRoot.Resources["ErrorLabel"] as Style;
 fld.Settings.CellValuePresenterStyle = styItem;

1 个答案:

答案 0 :(得分:2)

这应该这样做:

string style = "ErrorLabel";
Style styItem = LayoutRoot.Resources[style] as Style;
fld.Settings.CellValuePresenterStyle = styItem;