Olá quando eu clico no evento do botão "Proximo" a terceira página AgendamentoView não está aparecendo fica em branco mesmo eu tendo definido exatamente da mesma maneira que o professor no .xaml https://imgur.com/a/ie8YE0A Seria algum erro no Navigation? segue o código abaixo dos três Listagem view:
public partial class ListagemView : ContentPage
{
public List<Veiculo> Veiculos { get; set; }
public ListagemView()
{
InitializeComponent();
this.Veiculos = new List<Veiculo>
{
new Veiculo {Nome="FIESTA 2.0",Preco = 75000},
new Veiculo {Nome="FIAT PALIO 1.0",Preco = 60000},
new Veiculo {Nome="FIAT BRAVO", Preco = 50000},
};
this.BindingContext = this;
}
private void ItemListView_ItemTapped(object sender, ItemTappedEventArgs e)
{
var veiculo = (Veiculo)e.Item;
Navigation.PushAsync(new DetalheView(veiculo));
}
}
}
Detalhe View
public partial class DetalheView : ContentPage
{
public Veiculo Veiculo { get; set; }
private const int VALOR_FREIO_ABS = 800;
private const int VALOR_AR_CONDICIONADO = 1000;
private const int VALOR_MP3_PLAYER = 500;
public string TextoFreioABS
{
get
{
return string.Format("Freio ABS - R$ {0}", VALOR_FREIO_ABS);
}
}
public string TextoArCondicionado
{
get
{
return string.Format("Ar Condicionado - R$ {0}", VALOR_AR_CONDICIONADO);
}
}
public string TextoMP3Player
{
get
{
return string.Format("MP3 Player - R$ {0}", VALOR_MP3_PLAYER);
}
}
bool temFreioABS;
public bool TemFreioABS
{
get
{
return temFreioABS;
}
set
{
temFreioABS = value;
OnPropertyChanged();
OnPropertyChanged(nameof(PrecoTotalFormatado));
}
}
bool temArCondicionado;
public bool TemArCondicionado
{
get
{
return temArCondicionado;
}
set
{
temArCondicionado = value;
OnPropertyChanged();
OnPropertyChanged(nameof(PrecoTotalFormatado));
}
}
bool temMP3Player;
public bool TemMP3Player
{
get
{
return temMP3Player;
}
set
{
temMP3Player = value;
OnPropertyChanged();
OnPropertyChanged(nameof(PrecoTotalFormatado));
}
}
public decimal PrecoTotal
{
get
{
return Veiculo.Preco
+ (TemFreioABS ? VALOR_FREIO_ABS : 0)
+ (TemArCondicionado ? VALOR_AR_CONDICIONADO : 0)
+ (TemMP3Player ? VALOR_MP3_PLAYER : 0);
}
}
public string PrecoTotalFormatado
{
get
{
return string.Format("Total: R$ {0}", PrecoTotal);
}
}
public DetalheView(Veiculo veiculo)
{
this.Veiculo = veiculo;
InitializeComponent();
this.BindingContext = this;
}
private void buttonProximo_Clicked(object sender, EventArgs e)
{
Navigation.PushAsync(new AgendamentoView());
}
}
E AgendamentoView
namespace TesteDrive.Views
{
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class AgendamentoView : ContentPage
{
public AgendamentoView()
{
}
}