ListViewItem.ListViewSubItem.cs 407 B

1234567891011121314151617
  1. namespace System.Windows.Forms
  2. {
  3. public partial class ListViewItem
  4. {
  5. public class ListViewSubItem : INotifyPropertyChangedImpl
  6. {
  7. private string text;
  8. public string Text
  9. {
  10. get => text;
  11. set => this.RaiseAndSetIfChanged(ref text, value);
  12. }
  13. public object Tag { get; set; }
  14. }
  15. }
  16. }