XAML中的纯文本按钮

u4vypkhs  于 2023-05-27  发布在  其他
关注(0)|答案(1)|浏览(148)

我需要做一个按钮,它只显示文本(没有背景或边框)在XAML。
我尝试了下面的代码,但它只是隐藏了我的按钮:

<Button Text="Forgot Password?" Grid.Column="2" Grid.Row="2"
        BackgroundColor="Transparent" BorderColor="Transparent" TextColor="#89a455"/>

如何在.Net Maui中使用XAML实现此功能

z8dt9xmd

z8dt9xmd1#

你可以在上面使用Label and put a GestureRecognizer

<Label Text="Edit Account"
       HorizontalOptions="Start"
       FontSize="14"
       BackgroundColor="Red"
       Margin="20,0,0,30">
    <Label.GestureRecognizers>
        <TapGestureRecognizer
             Command="{Binding TapCommand}"/>
    </Label.GestureRecognizers>
</Label>

相关问题