Пример #1
0
 public RegTreeViewItem(RegTreeViewItemType Type, IntPtr hKey)
 {
     Items          = new ObservableCollection <RegTreeViewItem>();
     this.Type      = Type;
     this.hKey      = hKey;
     hKeyOpened     = hKeyPredefined.Contains(hKey) ? true : false;
     hKeyQueried    = false;
     OriginalValues = new List <RegValue>();
     Values         = new ObservableCollection <RegValueItem>();
 }
Пример #2
0
 public RegTreeViewItem(RegTreeViewItemType Type) : this(Type, (IntPtr)0)
 {
 }