public class VMInfoViewModel: INotifyPropertyChanged
    {

        private string strAccountName = "";
        private string strVMName = "SSP";
        private VMInfoContext _context;

        public event PropertyChangedEventHandler PropertyChanged;

        public void RaisePropertyChanged(string propertyName)
        {
            if (this.PropertyChanged != null)
            {
                this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
            }
        }

要实现这个接口这样才能在silverlight上显示数据

相关文章:

  • 2022-12-23
  • 2021-08-04
  • 2022-01-20
  • 2021-11-04
  • 2021-06-29
猜你喜欢
  • 2022-12-23
  • 2021-11-29
  • 2022-12-23
  • 2021-06-29
  • 2021-07-18
  • 2022-12-23
  • 2021-07-02
相关资源
相似解决方案