1
コードビハインドで作成した子オブジェクトにクリックイベントを追加するにはどうすればよいですか?C#グリッドチャイルドにクリックイベントを追加
String[] imageNames = System.IO.Directory.GetFiles("Assets/Images/Gallery");
foreach (String image in imageNames)
{
Uri source = new Uri("ms-appx:///" + image);
ImageSource imgSource = new BitmapImage(source);
Image myImage = new Image();
myImage.Source = imgSource;
gallery.Children.Add(myImage);
}
上記のコードは、galleryフォルダからすべての画像を取得し、それをvariablesizedwrapgridに追加します。私は
おかげ