動作しません。私は、オブジェクトが保存する必要があるかどうかをチェックするためにIsDirty値を使用したい使用してクラス - notifypropertychanged私は私のWCFサービスで定義された以下のクラスを持ってい
public class Autoturism : INotifyPropertyChanged
{
private int _AutoturismID;
public int AutoturismID
{ get { return _AutoturismID; } set { _AutoturismID = value; NotifyPropertyChanged("AutoturismID"); } }
private string _NumarAutoturism;
public string NumarAutoturism
{ get { return _NumarAutoturism; } set { _NumarAutoturism = value; NotifyPropertyChanged("NumarAutoturism"); } }
public bool IsDirty { get; set; }
public event PropertyChangedEventHandler PropertyChanged;
private void NotifyPropertyChanged(String info)
{
IsDirty = true;
if (PropertyChanged != null) PropertyChanged(this, new PropertyChangedEventArgs(info));
}
データベースに格納されます。
私は次の行を持っているSilverlightページでは:
AutoCurent = new Autoturism();
AutoCurent.NumarAutoturism="13424";
私の問題は、最後の行の後、私は本当のIsDirty =を持って期待していたということですが、それはまだfalseです。私は、サービス参照から来るAuoturismクラスにNotifyPropertyChangedメソッドがなくなったと考えています。
私は間違っていますか? は、あなたのサービスから、あなたは(私はあなたの問題から想定する必要があり)RIA WCFサービスを使用している場合は、Autoturismオブジェクトのクライアント側のバージョンがコードのみの性質を持っているが、ではないでしょうあなたの
+1のコードと説明が豊富です:) –