2010-09-02 114 views
0

如何將字符串字面值「ErrorLabel」替換爲第二行中的字符串變量樣式? FYI ..樣式名稱將被存儲在一個xml文件中。獲取字符串變量的值

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

回答

2

這應做到:

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

謝謝!現在起作用了,我感到很蠢!出於某種原因,儘管ResourceDictionary的關鍵字是類型對象,編譯器仍然說我不能使用變量! – GBackMania 2010-09-02 16:24:07