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.
是否可以确定用户单击图块的区域?就像 HTML 中的图像映射一样。我想在图像图块上指定两个按钮并为每个按钮执行不同的操作。
不,这是不可能的。
关于启动您的应用程序,磁贴就像您 PC 桌面上的快捷方式一样工作。
如果您确实需要您描述的行为,则必须创建 2 个应用程序 - 每个启动操作 1 个。
您可以对每个 UI 元素使用类似的东西。
private void ListBox_MouseEnter(object sender, MouseEventArgs e) { string pos= e.GetPosition(CanvasForLoop).X.ToString(); }