예제 #1
0
        public WizardFrame(IWizardController controller)
        {
            //
            // Erforderlich für die Windows Form-Designerunterstützung
            //
            InitializeComponent();
            this.controller = controller;
            ViewBase    newView = null;
            WizardState newState;

            controller.OnInit(out newView, out newState);
            this.SetWizardState(newState);
            this.View = newView;
        }