No projeto iOS adicione as imagens em; Resources
Para adicionar o controle;
1: Image img = new Image
2: {
3: BackgroundColor = Color.Black,
4: Source = "foto.jpg",
5: Aspect = Aspect.AspectFit,
6: VerticalOptions = LayoutOptions.End,
7: HorizontalOptions = LayoutOptions.End,
8: WidthRequest = 250,
9: HeightRequest = 300,
10: };
Para capturar um evento clique;
1: var Gesture = new TapGestureRecognizer(); 2: Gesture.Tapped += (s, e) => 3: { 4:
//Seu código ao pressionar a imagem
5: }; 6: img.GestureRecognizers.Add(Gesture);
0 comentários:
Postar um comentário