상속: TreeViewItemViewModel
예제 #1
0
 public SecsItemViewModel(Item item, SecsItemViewModel parentItem)
     : base(parentItem, lazyLoadChildren: item.Format == SecsFormat.List && item.Count > 0)
 {
     _secsItem = item;
 }
예제 #2
0
 public SecsItemViewModel(Item item, SecsItemViewModel parentItem)
     : base(parentItem, item.Format == SecsFormat.List && item.Items.Count > 0)
 {
     _secsItem = item;
 }
예제 #3
0
 public SecsItemViewModel(Item item, SecsItemViewModel parentItem)
     : base(parentItem, item.Format == SecsFormat.List && item.Items.Count > 0) {
     _secsItem = item;
 }