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.
我将项目添加到列表框中。现在我想单击每个单元格并移动到不同的页面。
如何识别列表中的选定单元格?
您应该在 click 事件处理程序中使用 sender。
YourItemType _sender = sender as YourItemType;
然后,您可以找出它到底是什么项目。你的项目有一些独特的领域吗?用它。
if (_sender.uniqueValue == something) { NavigationService.Navigate(...) }