0
選擇像我使用C#和我創建UWP應用。 我使用Windons.Ui.Xaml.Controls.Image和我已經創建follwoing代碼,其中列出我的圖片從StackPanel的C#UWP(添加動作監聽的UIElement和形象的UIElement)
UxHelpers.DispatchToASTAThread(
async() =>
{
imageIndex++;
StackPanel stackPanel = new StackPanel();
stackPanel.Children.Add(image);
}
this.Results.Children.Add(stackPanel);
}).Forget();
這是在for循環中,我要當某些圖像上用戶點擊才能夠拯救它。
我有保存的代碼,我只是不知道如何將鼠標監聽器添加到每個圖像,以便在將鼠標移到它上方時進行標記(因此用戶知道通過點擊它會發生某些事情)和當他點擊我想它來調用我的函數與此圖片索引....
我看過的UIElement,但我仍然無法弄清楚。
謝謝!