Coder Social home page Coder Social logo

Comments (4)

rabbitism avatar rabbitism commented on September 22, 2024

How is IsChecked defined?

from avalonia.

timunie avatar timunie commented on September 22, 2024

The row ViewModel needs to be ObservableObject as well. That's by design.

from avalonia.

Nanech avatar Nanech commented on September 22, 2024

Thank you for your kind advice and your willingness to help me.

You asked me about the implementation of the IsChecked property. Here is my class that is part of the ObservableCollection:

public partial class Student : ObservableObject, INotifyPropertyChanged
{
    public int StudentId { get; set; }
    public string Name { get; set; } = null!;
    public string Surname { get; set; } = null!;
    public int StudentGroupId { get; set; }
    public string Patronymic { get; set; } = null!;
    public short AdmissionDate { get; set; }
    public int StudentStatusId { get; set; }
    public string Fio { get; set; } = null!;
    public virtual Group? StudentGroup { get; set; }
    public virtual StudentsStatus? StudentStatus { get; set; }
    public virtual ICollection<StudentsAndPayment> StudentsAndPayments { get; set; } = new List<StudentsAndPayment>();
    
    bool _isChecked = false;
    [NotMapped]
    public bool IsChecked { get => _isChecked; set { _isChecked = value; OnPropertyChanged(nameof(IsChecked)); } }
    
    public event PropertyChangedEventHandler PropertyChanged;
    
    protected virtual void OnPropertyChanged(string propertyName)
    {
      PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
    }
    
    public bool Equals(Student other)
    {
      if (other == null) return false;
      return Fio == other.Fio && StudentGroupId == other.StudentGroupId && StudentStatusId == other.StudentStatusId && AdmissionDate == other.AdmissionDate && Name == other.Name &&
          Surname == other.Surname && Patronymic == other.Patronymic;
    }
}

I think this is not the best solution, as INotifyPropertyChanged is already present. Is there any way to mark the field "_isChecked" as an [ObservableProperty] and [NotMapped]? I need it in my case...

from avalonia.

Nanech avatar Nanech commented on September 22, 2024

Okay, I've just figured it out. Thanks!

public partial class Student : ObservableObject
{
    public int StudentId { get; set; }
    public string Name { get; set; } = null!;
    public string Surname { get; set; } = null!;
    public int StudentGroupId { get; set; }
    public string Patronymic { get; set; } = null!;
    public short AdmissionDate { get; set; }
    public int StudentStatusId { get; set; }
    public string Fio { get; set; } = null!;
    public virtual Group? StudentGroup { get; set; }
    public virtual StudentsStatus? StudentStatus { get; set; }
    public virtual ICollection<StudentsAndPayment> StudentsAndPayments { get; set; } = new List<StudentsAndPayment>();
    
    [ObservableProperty]
    [property: NotMapped]
    bool _isChecked = false;

    public bool Equals(Student other)
    {
      if (other == null) return false;
      return Fio == other.Fio && StudentGroupId == other.StudentGroupId && StudentStatusId == other.StudentStatusId && AdmissionDate == other.AdmissionDate && Name == other.Name &&
          Surname == other.Surname && Patronymic == other.Patronymic;
    }
}

from avalonia.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.