如何将标签的绑定值抓取到xamarin表单后面的代码中?

时间:2017-03-16 08:49:02

标签: xamarin xamarin.forms

我有一个列表视图,其中显示了所有员工姓名,地址和电话号码。现在我的任务是点击电话标签以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>

我将非常感谢你的帮助。

0 个答案:

没有答案