我需要做一个按钮,它只显示文本(没有背景或边框)在XAML。我尝试了下面的代码,但它只是隐藏了我的按钮:
<Button Text="Forgot Password?" Grid.Column="2" Grid.Row="2" BackgroundColor="Transparent" BorderColor="Transparent" TextColor="#89a455"/>
如何在.Net Maui中使用XAML实现此功能
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>
1条答案
按热度按时间z8dt9xmd1#
你可以在上面使用Label and put a GestureRecognizer。