Je voudrais afficher une image composée de deux images.Comment superposer une image sur une autre?
Je veux l'image rectangle.png montrer avec l'image sticker.png sur haut de celui-ci avec son main gauche coin au pixel 10, 10.
Voici aussi loin que J'ai, mais comment puis-je combiner les images?
Image image = new Image();
image.Source = new BitmapImage(new Uri(@"c:\test\rectangle.png"));
image.Stretch = Stretch.None;
image.HorizontalAlignment = HorizontalAlignment.Left;
Image imageSticker = new Image();
imageSticker.Source = new BitmapImage(new Uri(@"c:\test\sticker.png"));
image.OverlayImage(imageSticker, 10, 10); //how to do this?
TheContent.Content = image;
excellent, c'est l'approche que j'ai utilisée, juste besoin d'ajouter aussi un imageSticker.VerticalAlignment = VerticalAlignment.Top; –
Ce n'est pas une superposition réelle. Et si je voulais utiliser l'image combinée sur un bouton? Cela ne marcherait pas. – bobbyalex
Pourquoi pas? Le bouton peut certainement avoir cette grille comme son contenu. –