public override void ViewDidLoad()
        {
            base.ViewDidLoad();

            ShowAlertButton.SetCommand(ViewModel.OpenAlertCommand);
            ShowConfirmButton.SetCommand(ViewModel.OpenConfirmCommand);
            ShowActionSheetButton.SetCommand(ViewModel.OpenActionSheetCommand);
            ShowDialogUntilDismissButton.SetCommand(ViewModel.OpenDialogUntilDismissCommand);
            ShowDialogUntilResultButton.SetCommand(ViewModel.OpenDialogUntilResultCommand);
            OpenTwoDialogsButton.SetCommand(ViewModel.OpenTwoDialogsCommand);
        }