获取对特定WPF列表框的引用

时间:2016-03-08 11:56:29

标签: c# listbox

我正在尝试以编程方式根据设置为列表框名称的字符串获取对特定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'但是我不知道如何实现它。有什么建议吗?

1 个答案:

答案 0 :(得分:0)

终于找到了答案。由于有关引用列表框中对象的帖子/链接数量令人沮丧。无论如何,这是我需要的代码行:

populateLists(stringArray[0], stringArray[1], (ListBox)FindName(stringArray[2]));