The view model for the publish dialog step that allows the user to choose the target for the publish process. This is always the first step to be shown in the wizard, and it navigates to the step specified by the user pressing the choice button.
Наследование: GoogleCloudExtension.PublishDialog.PublishDialogStepBase
Пример #1
0
        public static IPublishDialogStep CreateStep()
        {
            var content = new ChoiceStepContent();
            var viewModel = new ChoiceStepViewModel(content);
            content.DataContext = viewModel;

            return viewModel;
        }
        public static IPublishDialogStep CreateStep()
        {
            var content = new ChoiceStepContent();
            var viewModel = new ChoiceStepViewModel(content);
            content.DataContext = viewModel;

            return viewModel;
        }