1234567891011121314151617 |
- namespace System.Windows.Forms
- {
- public partial class ListViewItem
- {
- public class ListViewSubItem : INotifyPropertyChangedImpl
- {
- private string text;
- public string Text
- {
- get => text;
- set => this.RaiseAndSetIfChanged(ref text, value);
- }
- public object Tag { get; set; }
- }
- }
- }
|