CountryItem.cs
上传用户:lxycoco
上传日期:2022-07-21
资源大小:38457k
文件大小:1k
源码类别:

C#编程

开发平台:

Others

  1. using System;
  2. namespace SimpleListView
  3. {
  4. /// <summary>
  5. /// Summary description for CustomItem.
  6. /// </summary>
  7. public class CountryItem : System.Windows.Forms.ListViewItem
  8. {
  9. string _cntryName = "";
  10. string _cntryAbbrev = "";
  11. public CountryItem(string countryName, string countryAbbreviation, string currency)
  12. {
  13. _cntryName = countryName;
  14. _cntryAbbrev = countryAbbreviation;
  15.       base.Text = _cntryName;
  16.       base.SubItems.Add(currency);
  17. }
  18. public string CountryName
  19. {
  20. get {return _cntryName;}
  21. }
  22. public string CountryAbbreviation
  23. {
  24. get {return _cntryAbbrev;}
  25. }
  26.     
  27. }
  28. }