private void CloseAddressBook() { shellService.ClearToolBarCommands(); if (activeContactController != null) { activeContactController.Shutdown(); activeContactController = null; } }
private void ShowAddressBook() { activeContactController = container.GetExportedValue<ContactController>(); activeContactController.Root = root; activeContactController.Initialize(); activeContactController.Run(); ToolBarCommand uiNewContactCommand = new ToolBarCommand(activeContactController.NewContactCommand, "_New contact", "Creates a new contact."); ToolBarCommand uiDeleteCommand = new ToolBarCommand(activeContactController.DeleteContactCommand, "_Delete", "Deletes the selected contact."); shellService.AddToolBarCommands(new[] { uiNewContactCommand, uiDeleteCommand }); }
private void CloseAddressBook() { shellService.ClearToolBarCommands(); activeContactController?.Shutdown(); activeContactController = null; }