代码无法识别 xaml 中的名称视图(Xamarin Forms Visual Studio 2015)
Code is not recognizing the name view in xaml (Xamarin Forms Visual Studio 2015)
<?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="PermeabilidadeSolo.Pages.TipoSoloPage"
Title="Tipo de Solo">
<StackLayout>
<ListView x:Name="lvTipoSolo" ItemSelected="TipoSoloSelected" />
</StackLayout>
</ContentPage>
当我尝试在 file.cs 中使用列表视图时它不起作用,file.cs 无法识别 lvTipoSolo
在我的案例中,Visual Studio 2017 创建了 XAML 文件,其中 自定义工具 属性 设置为 MSBuild:Compile
。将其更改为 MSBuild:UpdateDesignTimeXaml
后,它生成了对应于 x:Name
属性的私有字段。
<?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="PermeabilidadeSolo.Pages.TipoSoloPage"
Title="Tipo de Solo">
<StackLayout>
<ListView x:Name="lvTipoSolo" ItemSelected="TipoSoloSelected" />
</StackLayout>
</ContentPage>
当我尝试在 file.cs 中使用列表视图时它不起作用,file.cs 无法识别 lvTipoSolo
在我的案例中,Visual Studio 2017 创建了 XAML 文件,其中 自定义工具 属性 设置为 MSBuild:Compile
。将其更改为 MSBuild:UpdateDesignTimeXaml
后,它生成了对应于 x:Name
属性的私有字段。