Ignore:
Timestamp:
Aug 9, 2011, 6:08:04 PM (13 years ago)
Author:
bayral
Message:

New step for piwigowpf

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/PiwigoLib/PiwigoWpf/DTO/PwgModelManager.cs

    r11922 r11926  
    2525        }
    2626
    27         public class PwgModelManagerBase
     27        public class PwgModelManagerBase : INotifyPropertyChanged
    2828        {
    2929            private AsyncObservableCollection<String> _lstMsgInfo = new AsyncObservableCollection<String>();
     
    6262            }
    6363
     64            private PwgImageWPF _imageShown;
     65            public PwgImageWPF ImageShown
     66            {
     67                get { return _imageShown; }
     68                set { _imageShown = value; OnPropertyChanged("ImageShown"); }
     69            }
     70           
    6471            public event PropertyChangedEventHandler PropertyChanged;
    6572            internal void OnPropertyChanged(String info)
     
    6976            }
    7077        }
    71 
    72        
    7378    }
    7479}
Note: See TracChangeset for help on using the changeset viewer.