如何在第二行中用字符串变量样式替换字符串文字 - “ErrorLabel”?仅供参考..样式名称将存储在xml文件中。
string style = "ErrorLabel";
Style styItem = LayoutRoot.Resources["ErrorLabel"] as Style;
fld.Settings.CellValuePresenterStyle = styItem;
答案 0 :(得分:2)
这应该这样做:
string style = "ErrorLabel";
Style styItem = LayoutRoot.Resources[style] as Style;
fld.Settings.CellValuePresenterStyle = styItem;