Thread ID: |
Created: |
Updated: |
Platform: |
Replies: |
145811 | Jul 9,2019 12:35 PM UTC | Jul 10,2019 12:48 PM UTC | Xamarin.Forms | 3 |
![]() |
Tags: SfDataGrid |
reply, class structure should be such.
public class Kisi : INotifyPropertyChanged
{
private int id { get; set; }
private string adSoyad { get; set; }
private string gsm { get; set; }
public event PropertyChangedEventHandler PropertyChanged;
private void RaisePropertyChanged(String Name)
{
if (PropertyChanged != null)
this.PropertyChanged(this, new PropertyChangedEventArgs(Name));
}
public int Id
{
get { return id; }
set { this.id = value; RaisePropertyChanged("Id"); }
}
public string AdSoyad
{
get { return adSoyad; }
set { this.adSoyad = value; RaisePropertyChanged("AdSoyad"); }
}
public string Gsm
{
get { return gsm; }
set { this.gsm = value; RaisePropertyChanged("Gsm"); }
}
}
This post will be permanently deleted. Are you sure you want to continue?
Sorry, An error occured while processing your request. Please try again later.
This page will automatically be redirected to the sign-in page in 10 seconds.