Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用WPF. 我添加了一个搜索框,它以ListBox. 我希望当我单击列表框中的值显示时,应在其响应中打开一个新窗口以显示其名称。这怎么可能?例如:在这个附加的图像中,如果我点击 assignment7,应该会打开一个新窗口来显示它的 value assignment7。你能回答我这个问题吗?
WPF
ListBox
全尺寸图片在这里
尝试使用 OnSelected 事件,从事件参数获取选定列表项的索引,使用此索引获取选定项。然后制作带有标题的新窗口。
var newW = new NewWindow(); newW.WindowTitle = "Title"; newW.Show();