Xamarin 无法访问对隐藏代码的控制

Bri*_*ins 6 .net c# code-behind xamarin xamarin.forms

对于我的 Xamarin Forms 项目(最新版本 1.3),当我在 Xamarin Studio(最新版本,5.5.4)中创建视图时,我将视图定义如下:

<?xml version="1.0" encoding="UTF-8"?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" x:Class="FormsDemo.Register">
  <ContentPage.Content>

    <Grid>
      <Grid.RowDefinitions>
        <RowDefinition />
        <RowDefinition />
        <RowDefinition />
        <RowDefinition />
      </Grid.RowDefinitions>
      <Grid.ColumnDefinitions>
        <ColumnDefinition Width="100" />
        <ColumnDefinition />
      </Grid.ColumnDefinitions>

      <Label Grid.Row="0" Grid.Column="0" Text="First Name" />
      <Entry x:Name="FirstName" Grid.Row="0" Grid.Column="1" />

      <Label Grid.Row="1" Grid.Column="0" Text="Last Name" />
      <Entry x:Name="LastName" Grid.Row="1" Grid.Column="1" />

      <Label Grid.Row="2" Grid.Column="0" Text="Email" />
      <Entry x:Name="Email" Grid.Row="2" Grid.Column="1" />

      <Button x:Name="SaveButton" Grid.Row="3" Grid.Column="0" Text="Login" />
    </Grid>

  </ContentPage.Content>
</ContentPage>
Run Code Online (Sandbox Code Playgroud)

但是,在我的代码隐藏中,根本找不到任何对其名称的控件的引用。以下代码出错(由注释指出):

using System;
using System.Collections.Generic;
using Xamarin.Forms;

namespace FormsDemo
{ 
  public partial class Register : ContentPage
  { 
    public Register ()
    {
      InitializeComponent ();

            //Using this approach worked, but is not ideal
      this.FindByName<Button>("SaveButton").Clicked += Save_Clicked;
    }

    void Save_Clicked (object sender, EventArgs e)
    {
      this.FirstName.Text = "A";
      this.LastName.Text= "B";
    }
  }
}
Run Code Online (Sandbox Code Playgroud)

奇怪的是,我收到了以下警告:

警告:已分配私有字段“FormsDemo.Register.FirstName”,但从未使用其值 (FormsDemo.Solution)

我为每个领域得到一个。为什么这不起作用?如何让 IntelliSense 工作?

Bri*_*ins 2

最新的更新似乎解决了这个问题;这些参考文献工作正常:

this.FirstName.Text = "A";
this.LastName.Text= "B";
Run Code Online (Sandbox Code Playgroud)

看来设计师的一些问题已经解决了。