/Visual Studio 2008/CSWPFPaging/Customer.cs

# · C# · 31 lines · 14 code · 2 blank · 15 comment · 0 complexity · 041f7069d13b433e85eb7e700714ec70 MD5 · raw file

  1. /************************************* Module Header **************************************\
  2. * Module Name: MainWindow.xaml.cs
  3. * Project: CSWPFPaging
  4. * Copyright (c) Microsoft Corporation.
  5. *
  6. * The sample demonstrates how to page data in WPF.
  7. *
  8. *
  9. * This source is subject to the Microsoft Public License.
  10. * See http://www.microsoft.com/opensource/licenses.mspx#Ms-PL.
  11. * All other rights reserved.
  12. *
  13. * History:
  14. * * 12/02/2009 3:00 PM Zhi-Xin Ye Created
  15. */
  16. using System;
  17. using System.Collections.Generic;
  18. using System.Linq;
  19. using System.Text;
  20. namespace CSWPFPaging
  21. {
  22. class Customer
  23. {
  24. public int ID { get; set; }
  25. public string Name { get; set; }
  26. public int Age { get; set; }
  27. public string Country { get; set; }
  28. }
  29. }