Where i need to define INotifyPropertyChanged in case of Base and sub classes
问题 i have this Base class : public abstract class WiresharkFile { protected string _fileName; protected int _packets; protected int _packetsSent; protected string _duration; public int Packets { get { return _packets; } set { _packets = value; } } public int PacketsSent { get { return _packetsSent; } set { _packetsSent = value; } } } And this sub class: public class Libpcap : WiresharkFile, IDisposable, IEnumerable<WiresharkFilePacket> { .... } Create my object: WiresharkFile wiresahrkFile = new