Inheritance: TreeViewItemViewModel
Exemplo n.º 1
0
 public SecsItemViewModel(Item item, SecsItemViewModel parentItem)
     : base(parentItem, lazyLoadChildren: item.Format == SecsFormat.List && item.Count > 0)
 {
     _secsItem = item;
 }
Exemplo n.º 2
0
 public SecsItemViewModel(Item item, SecsItemViewModel parentItem)
     : base(parentItem, item.Format == SecsFormat.List && item.Items.Count > 0)
 {
     _secsItem = item;
 }
Exemplo n.º 3
0
 public SecsItemViewModel(Item item, SecsItemViewModel parentItem)
     : base(parentItem, item.Format == SecsFormat.List && item.Items.Count > 0) {
     _secsItem = item;
 }