这个例子中被绑定的数据是一个owner类的实例,现在silverlight项目中添加一个owner类

Class Owner

    public class Owner
    {
        public int OwnerId { get; set; }
        public string FirstName { get; set; }
        public string LastName { get; set; }
        public string Address { get; set; }
        public string ZipCode { get; set; }
        public string City { get; set; }
        public string State { get; set; }
        public string Country { get; set; }
        public DateTime BirthDate { get; set; }
        public DateTime CustomerSince { get; set; }
        public string ImageName { get; set; }
        public DateTime LastActivityDate { get; set; }
        public double CurrentBalance { get; set; }
        public double LastActivityAmount { get; set; }
    }

相关文章:

  • 2021-06-07
  • 2021-06-02
  • 2021-12-16
  • 2021-07-17
  • 2022-03-03
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-09-20
  • 2022-12-23
  • 2021-06-27
  • 2022-12-23
  • 2021-07-17
相关资源
相似解决方案