Olá pessoal, já acabei o curso e estou brincando um pouco com o xamarin. Meu problema é que preciso pegar o valor de uma SwitchCell para atualizar um campo no banco, o problema é que quando mudo o valor do componente nada acontece. Se alguém puder me ajudar agradeço. (Já dei uma googleada mas não consegui). Segue o código.
ViewModel
namespace FutApp.ViewModel
{
public class ListaPlayerViewModel : INotifyPropertyChanged
{
private PlayerDAO dao;
private ContentPage page;
public ObservableCollection<Player> Player { get; set; }
public ICommand UpdatePlayer { get; private set; }
public event PropertyChangedEventHandler PropertyChanged;
private string name;
public string Name
{
get { return name; }
set
{
name = value;
}
}
private bool status;
public bool Status
{
get { return status; }
set
{
if (value != status)
{
status = value;
OnPropertyChanged("Status");
}
}
}
public ListaPlayerViewModel(PlayerDAO dao, ContentPage page)
{
Player = dao.Lista;
this.dao = dao;
this.page = page;
private void OnPropertyChanged(string nome)
{
PropertyChanged(this, new PropertyChangedEventArgs(nome));
}
}
}
xaml
<?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="FutApp.View.ListaPlayer" Title="Jogadores">
<ContentPage.Content>
<StackLayout Padding="25">
<ListView ItemsSource="{Binding Player}">
<ListView.ItemTemplate>
<DataTemplate>
<SwitchCell Text="{Binding Name}" On="{Binding Status, Mode=TwoWay}">
</SwitchCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</StackLayout>
</ContentPage.Content>
</ContentPage>
xaml behind
namespace FutApp.View
{
public partial class ListaPlayer : ContentPage
{
private ListaPlayerViewModel vm;
public ListaPlayer(PlayerDAO dao)
{
vm = new ListaPlayerViewModel(dao, this);
this.BindingContext = vm;
InitializeComponent();
}
}
}