Estou seguindo as videos aulas, e ao criar uma nova pasta para Views, o arquivo ListagemView.xaml.cs informa o seguinte erro: O nome 'InitializeComponent' não existe no contexto atual no aplicativo WPF
Como devo preseguir?
public ListagemView()
{
InitializeComponent();
this.Clientes = new List<Cliente>
{
new Cliente { Nome = "Clube de Campo", Evento = "A Bela e a Fera"}
};
this.BindingContext = this;
}