我在页面上有一组视觉元素,其中任何一个都可以长按。在代码中,我可以在长按按钮时运行命令:
for (int i = 0; i < choiceButtons.Length; i++)
{
TouchEffect.SetLongPressCommand(choiceButtons[i], new Command( async () =>
{
// Do stuff here, depending which button was long-pressed
}));
TouchEffect.SetLongPressCommandParameter(choiceButtons[i], choiceButtons[i].Text);
}
但是,我需要能够确定哪个视觉元素是长按的。有没有办法做到这一点?
(视觉元素是 Grid 的子类。)
[编辑:索引更正]