如何访问xaml设计器页面中声明的变量?

时间:2016-12-25 03:12:51

标签: xaml xamarin.forms

在我的page.xaml中声明如下

<Label Text="Location" Style="{StaticResource labelStyle}" />
<ContentView Style="{StaticResource fieldView}">
    <Label Text="{Binding Title}" Style="{StaticResource fieldStyle}" />
</ContentView>

我正在尝试访问xaml.cs页面中的变量Location.Text。但是,我无法访问语法。

1 个答案:

答案 0 :(得分:1)

您需要为元素指定一个名称,以便从后面的代码中访问它:

XAML中的

<Label x:Name="txtLoc" Text="Location" Style="{StaticResource labelStyle}" />

在后面的代码中:

var loc = txtLoc.Text;