CountryItem.cs
上传用户:lxycoco
上传日期:2022-07-21
资源大小:38457k
文件大小:1k
- using System;
- namespace SimpleListView
- {
- /// <summary>
- /// Summary description for CustomItem.
- /// </summary>
- public class CountryItem : System.Windows.Forms.ListViewItem
- {
- string _cntryName = "";
- string _cntryAbbrev = "";
- public CountryItem(string countryName, string countryAbbreviation, string currency)
- {
- _cntryName = countryName;
- _cntryAbbrev = countryAbbreviation;
- base.Text = _cntryName;
- base.SubItems.Add(currency);
- }
- public string CountryName
- {
- get {return _cntryName;}
- }
- public string CountryAbbreviation
- {
- get {return _cntryAbbrev;}
- }
-
- }
- }