private RegistryKeyViewModel CreateHiveViewModel(RegistryHive registryHive) { var path = registryHive.ToPath(); var registryKey = new IntegratedRegistryKey { HasSubKeys = true, Name = path, Path = path }; return(new RegistryKeyViewModel(this, registryKey, _restClient, _statusBar, parentViewModel: null)); }