Gente, não consigo acessar a listview, definida no xaml no code behind. o xaml está definido como:
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:Moshi"
x:Class="Moshi.MainPage">
<ListView x:Name="lisMoshi">
</ListView>
</ContentPage>
e quando acesso o code behind a listview não aparece.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xamarin.Forms;
namespace Moshi
{
public partial class MainPage : ContentPage
{
public MainPage()
{
InitializeComponent();
lisMoshi.
}
}
}