我有一个列表视图,其中显示了所有员工姓名,地址和电话号码。现在我的任务是点击电话标签以xamarin表格拨打电话。
请帮我把绑定标签的值放到代码的后端。
<Label FontSize="14" x:Name="BtnCall" TextColor="Black" Text="{Binding Phone}" HorizontalOptions="StartAndExpand" VerticalOptions="Center" >
<Label.GestureRecognizers>
<TapGestureRecognizer
Tapped="OnPhoneTapped">
</TapGestureRecognizer>
</Label.GestureRecognizers>
</Label>
我将非常感谢你的帮助。