Speziell App Button?

1 Antwort

Du könntest ein StackLayout verwenden, welches du mit einem TapGestureRecognizer ausstattest (lies dazu auch hier).

XAML:

<StackLayout>
  <Label>Text at the top</Label>
  <Image Source="...">
  <Label>Text at the bottom</Label>

  <StackLayout.GestureRecognizers>
    <TapGestureRecognizer Command="{Binding YourCommand}" />
  </StackLayout.GestureRecognizers>
</StackLayout>
duerumdoener 
Fragesteller
 25.08.2021, 22:00

Hallo, stackpanel finde ich leider nicht...

0
regex9  26.08.2021, 03:54
@duerumdoener

Stimmt, entschuldige. Diese Lösung war nur funktional für WPF. Ich habe meine Antwort nochmal aktualisiert.

0