Visual Studio/WPF > IDE > Error: 'Greeting'은 인터페이스 멤버 'INotifyPropertyChange.ProPertyChanged'를 구현하지 않습니다. > 마우스 클릭으로 해결
Windows 7 Pro (32bit)
Microsoft Visual Studio 2017 Community
Sublime Text 2
h tp : /// s ぇ l. ldb㎉g. jp / archi s / 52301656. HTML
참고로 학습 중.
오류
code
MainWindow.xaml.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
//
using System.ComponentModel;
namespace _170605_t1120_singleBinding
{
/// <summary>
/// MainWindow.xaml の相互作用ロジック
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
}
public class Greeing : INotifyPropertyChanged
{
private bool _isFriendly;
public bool IsFriendly
{
get { return _isFriendly; }
set {
if (value != this._isFriendly)
{
this._isFriendly = value;
NotifyPropertyChanged("IsFriendly");
}
}
}
public event PropertyChangedEventHandler hndlr;
private void NotifyPropertyChanged(string info)
{
if (hndlr != null)
{
hndlr(this, new PropertyChangedEventArgs(info));
}
}
public void Greet()
{
NotifyPropertyChanged("Message");
}
}
}
오류 메시지
'Greeting'은 인터페이스 멤버 'INotifyPropertyChange.ProPertyChanged'를 구현하지 않습니다.
대처
적파선 곳에 마우스 커서를 가져간다.
가능한 수정 내용 표시(Alt+Enter 또는 Ctrl*.)
라는 기재를 클릭해 보면 이하가 표시된다.
그런 다음 "인터페이스를 구현합니다."를 선택하면 다음 줄이 추가되었습니다.
public event PropertyChangedEventHandler PropertyChanged;
PropertyChanged
라는 이름이 아니라 스스로 마음대로 결정한 hndlr이라는 명명이 실수였다.실수
public event PropertyChangedEventHandler hndlr;
IDE의 이 편리한 기능은 어디까지 사용해 좋은 것인가는 요 검토.
Reference
이 문제에 관하여(Visual Studio/WPF > IDE > Error: 'Greeting'은 인터페이스 멤버 'INotifyPropertyChange.ProPertyChanged'를 구현하지 않습니다. > 마우스 클릭으로 해결), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/7of9/items/529b12e26165ad4ad5cd텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)