public virtual void Process(UNConfigurationStepArgs args)
 {
     ConfigurationControlConstructInfo constructInfo = args.ConfigurationConstructInfo;
       constructInfo.AllowReboot = false;
       constructInfo.EnableResetAllOption = true;
       constructInfo.ConfigurationDescription = this.ConfigurationDescription;
 }
예제 #2
0
        public virtual void Process(UNConfigurationStepArgs args)
        {
            ConfigurationControlConstructInfo constructInfo = args.ConfigurationConstructInfo;

            constructInfo.AllowReboot              = false;
            constructInfo.EnableResetAllOption     = true;
            constructInfo.ConfigurationDescription = this.ConfigurationDescription;
        }
예제 #3
0
        public static WindowStepState Run()
        {
            var args = new UNConfigurationStepArgs();

            HatcherGuide <IPipelineManager> .Instance.InvokePipeline("getStateForUserNotificationsUIConfiguration", args);

            return(args.StateConstructInfo.ResultState);
        }
예제 #4
0
 public virtual void Process(UNConfigurationStepArgs args)
 {
     WindowWithBackStateConstructInfo constructInfo = args.StateConstructInfo;
       constructInfo.Header = this.Header;
       constructInfo.GlobalTitle = this.GlobalTitle;
       constructInfo.ShortName = this.ShortName;
       constructInfo.ContentVM = this.GetContentVM(args);
 }
예제 #5
0
        public virtual void Process(UNConfigurationStepArgs args)
        {
            WindowWithBackStateConstructInfo constructInfo = args.StateConstructInfo;

            constructInfo.Header      = this.Header;
            constructInfo.GlobalTitle = this.GlobalTitle;
            constructInfo.ShortName   = this.ShortName;
            constructInfo.ContentVM   = this.GetContentVM(args);
        }
예제 #6
0
 public virtual void Process(UNConfigurationStepArgs args)
 {
     var constructInfo = args.StateConstructInfo;
       constructInfo.ResultState = new WindowStepState(
     constructInfo.GlobalTitle,
     constructInfo.Header,
     constructInfo.ShortName,
     args.ConfigurationConstructInfo.ResultControlVM,
     constructInfo.SuperAction,
     constructInfo.StateSpecificHelpActions);
 }
예제 #7
0
        public virtual void Process(UNConfigurationStepArgs args)
        {
            var constructInfo = args.StateConstructInfo;

            constructInfo.ResultState = new WindowStepState(
                constructInfo.GlobalTitle,
                constructInfo.Header,
                constructInfo.ShortName,
                args.ConfigurationConstructInfo.ResultControlVM,
                constructInfo.SuperAction,
                constructInfo.StateSpecificHelpActions);
        }
 public virtual void Process(UNConfigurationStepArgs args)
 {
     args.ConfigurationConstructInfo.BuildControlVM();
 }
예제 #9
0
 public virtual void Process(UNConfigurationStepArgs args)
 {
     args.ConfigurationConstructInfo.BuildControlVM();
 }
예제 #10
0
        public virtual void Process(UNConfigurationStepArgs args)
        {
            ConfigurationControlConstructInfo constructInfo = args.ConfigurationConstructInfo;

            this.AddEntries(constructInfo.ConfigurationEntries);
        }
예제 #11
0
 protected virtual object GetContentVM(UNConfigurationStepArgs args)
 {
     return args.ConfigurationConstructInfo.ResultControlVM;
 }
예제 #12
0
 protected virtual object GetContentVM(UNConfigurationStepArgs args)
 {
     return(args.ConfigurationConstructInfo.ResultControlVM);
 }
예제 #13
0
 public virtual void Process(UNConfigurationStepArgs args)
 {
     ConfigurationControlConstructInfo constructInfo = args.ConfigurationConstructInfo;
       this.AddEntries(constructInfo.ConfigurationEntries);
 }