在我的page.xaml中声明如下
<Label Text="Location" Style="{StaticResource labelStyle}" />
<ContentView Style="{StaticResource fieldView}">
<Label Text="{Binding Title}" Style="{StaticResource fieldStyle}" />
</ContentView>
我正在尝试访问xaml.cs页面中的变量Location.Text。但是,我无法访问语法。
答案 0 :(得分:1)
您需要为元素指定一个名称,以便从后面的代码中访问它:
XAML中的:
<Label x:Name="txtLoc" Text="Location" Style="{StaticResource labelStyle}" />
在后面的代码中:
var loc = txtLoc.Text;