我正在尝试以编程方式根据设置为列表框名称的字符串获取对特定WPF列表框的引用。我想完成这段代码:
StackTrace st = new StackTrace();
string cmn = (st.GetFrame(0).GetMethod().ToString().Remove(0, 5)).Remove(4, 3);
stringArray = processMethodName(cmn);
populateLists(stringArray[0], stringArray[1], lst_Ingredients);
我的' processMethodName' function返回stringArray [2]的值,该值设置为< lst_Ingredients'但是我不知道如何实现它。有什么建议吗?
答案 0 :(得分:0)
populateLists(stringArray[0], stringArray[1], (ListBox)FindName(stringArray[2]));