Hi,
mainly I have two questions.
Thanks Sudharsan,
I check the sample,
but for me it is unclear how I get an image into the gallery item.
Thanks and regards
Uwe
GalleryItem GItem = new GalleryItem();
GItem.Caption = "Visual Studio 2019";
GItem.Description = "Visual Studio 2019 Succinctly describes what's new in VS2019 from the point of view of the IDE. It covers the improved installation experience, new productivity features for managing projects.";
Image img = new Image();
img.Height = 20;
img.Width = 100;
img.Source = new BitmapImage(new Uri("pack://application:,,,/Nuget.jpg", UriKind.RelativeOrAbsolute));
//Adding image to content of GalleryItem.
GItem.Content = img;
|
Thanks alot.