Advertisement
thommy1972de2

Untitled

May 22nd, 2020
1,253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.36 KB | None | 0 0
  1. // Versuch 1 (geht nicht)
  2. Truck_Manufactur_Image.Source = new BitmapImage(new Uri("Icons/icons8-mercedes-benz-256.png"));
  3.                    
  4. // Versuch 2 (geht nicht):
  5. BitmapImage b = new BitmapImage();
  6. b.BeginInit();
  7. b.UriSource = new Uri(@"Icons/icons8-mercedes-benz-256.png", UriKind.);
  8. Truck_Manufactur_Image.Source = b;
  9. b.Freeze();
  10. b.EndInit();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement