TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
yash joshi
NA
15
2.1k
InotifyPropertyChanged implementing Error
Feb 22 2018 5:58 AM
'ContactManager.Notifier' does not implement interface member 'System.ComponentModel.INotifyPropertyChanged.PropertyChanged' C:\Users\1352756\AppData\Local\Temporary Projects\ContactManager\Notifier.cs 7 27 ContactManager
This is the Error i am getting and i can not find any solution for this.......
namespace ContactManager
{
[Serializable]
public abstract class Notifier:INotifyPropertyChanged
{
[field: NonSerialized]
public event PropertyChangedEventHandler propertychanged;
protected virtual void Onpropertychanged(string propertyname)
{
var Eventhandler = this.propertychanged;
Onpropertychanged("propertyname");
if (Eventhandler != null)
{
Eventhandler(this,
new PropertyChangedEventArgs(propertyname)
);
}
}
}
}
Please Help!
Reply
Answers (
1
)
Need to make WPF application keyboard navigable
create table functionality