コード例 #1
0
        protected override IWizardSettingIterator BuildWizardPages()
        {
            this.newProjectSupplyPage = new GenericWizardSetting<NewProjectSupplyPage>("Ajout d'un composant", "Ajouter un composant au project", true);
            this.newProjectSupplyPage.TypedPage.Supplies = this.supplies;

            return new WizardSettingListIterator(this.newProjectSupplyPage);
        }
コード例 #2
0
        public WizardViewListIterator(IList<WizardView> wizards)
        {
            this.wizards = wizards;
            this.wizardSetting = new GenericWizardSetting<WizardPage>("Sélection de l'assitant", "Sélection de l'assitant", false);

            this.wizardSetting.TypedPage.Wizards = this.wizards;
        }
コード例 #3
0
        protected override IWizardSettingIterator BuildWizardPages()
        {
            this.newHardwareSupplyPage = new GenericWizardSetting<NewHardwareSupplyPage>("Nouveau composant de matériel", "Ajout d'un composant au matériel", true);
            this.newHardwareSupplyPage.TypedPage.Supplies = this.supplies;
            this.commentPage = new GenericWizardSetting<CommentPage>("Nouveau composant de matériel", "Ajout d'un composant au matériel", true);

            return new WizardSettingListIterator(this.newHardwareSupplyPage, this.commentPage);
        }
コード例 #4
0
        protected override IWizardSettingIterator BuildWizardPages()
        {
            this.editHardwareSupplyPage = new GenericWizardSetting<EditHardwareSupplyPage>("Edition d'un composant de matériel",
                                                                         "Vous pouvez ici éditer le composant du matériel", true);
            this.editHardwareSupplyPage.TypedPage.Quantity = this.hardwareSupply.Quantity;
            this.editHardwareSupplyPage.TypedPage.Comment = this.hardwareSupply.Comment;

            return new WizardSettingListIterator(this.editHardwareSupplyPage);
        }
コード例 #5
0
        protected override IWizardSettingIterator BuildWizardPages()
        {
            this.importCatalog = new GenericWizardSetting<ImportCatalogWizardPage>("Importer un catalogue",
                                                                         "Vous pouvez ici importer les matériaux d'un catalogue", true);

            this.importCatalog.TypedPage.CatalogItem = this.catalogItem;

            return new WizardSettingListIterator(this.importCatalog);
        }
コード例 #6
0
        protected override IWizardSettingIterator BuildWizardPages()
        {
            this.editHardwarePage = new GenericWizardSetting<EditHardwarePage>("Edition d'un matériel",
                                                                         "Vous pouvez ici éditer un matériel", true);
            this.editHardwarePage.TypedPage.HardwareName = this.hardware.Name;
            this.editHardwarePage.TypedPage.CatalogTasks = this.catalogTasks;
            this.editHardwarePage.TypedPage.HardwareTasks = this.hardwareTasks;

            return new WizardSettingListIterator(this.editHardwarePage);
        }
コード例 #7
0
        protected override IWizardSettingIterator BuildWizardPages()
        {
            this.editSupplyPage = new GenericWizardSetting<EditSupplyPage>("Edition d'une fourniture",
                                                                         "Vous pouvez ici éditer une fourniture", true);
            this.editSupplyPage.TypedPage.SupplyName = this.supply.Name;
            this.editSupplyPage.TypedPage.Reference = this.supply.Reference;
            this.editSupplyPage.TypedPage.Category = this.supply.Category;
            this.editSupplyPage.TypedPage.ModuleSize = this.supply.ModuleSize;
            this.editSupplyPage.TypedPage.CatalogPrice = this.supply.CatalogPrice;
            this.editSupplyPage.TypedPage.PFC12 = this.supply.PFC12;
            this.editSupplyPage.TypedPage.PFC0 = this.supply.PFC0;
            this.editSupplyPage.TypedPage.Cap = this.supply.Cap;

            return new WizardSettingListIterator(this.editSupplyPage);
        }
コード例 #8
0
        protected override IWizardSettingIterator BuildWizardPages()
        {
            this.editHardwareSupplyPage1 = new GenericWizardSetting<EditProjectHardwareSupplyPage1>("Edition d'un composant",
                                                                         "Vous pouvez ici éditer le composant", true);

            this.editHardwareSupplyPage1.TypedPage.Quantity = this.hardwareSupply.Quantity;
            this.editHardwareSupplyPage1.TypedPage.SupplyName = this.hardwareSupply.SupplyName;
            this.editHardwareSupplyPage1.TypedPage.Reference = this.hardwareSupply.SupplyReference;
            this.editHardwareSupplyPage1.TypedPage.Category = this.hardwareSupply.SupplyCategory;
            this.editHardwareSupplyPage1.TypedPage.ModuleSize = this.hardwareSupply.SupplyModuleSize;
            this.editHardwareSupplyPage1.TypedPage.CatalogPrice = this.hardwareSupply.SupplyCatalogPrice;
            this.editHardwareSupplyPage1.TypedPage.Price = this.hardwareSupply.SupplyPrice;
            this.editHardwareSupplyPage1.TypedPage.PFC12 = this.hardwareSupply.SupplyPFC12;
            this.editHardwareSupplyPage1.TypedPage.PFC0 = this.hardwareSupply.SupplyPFC0;
            this.editHardwareSupplyPage1.TypedPage.Cap = this.hardwareSupply.SupplyCap;

            this.editHardwareSupplyPage2 = new GenericWizardSetting<EditProjectHardwareSupplyPage2>("Edition d'un composant",
                                                                         "Vous pouvez ici éditer le composant", true);

            this.editHardwareSupplyPage2.TypedPage.Comment = this.hardwareSupply.Comment;

            return new WizardSettingListIterator(this.editHardwareSupplyPage1, this.editHardwareSupplyPage2);
        }
コード例 #9
0
        protected override IWizardSettingIterator BuildWizardPages()
        {
            this.newCatalogPage = new GenericWizardSetting<NewCatalogPage>("Nouveau catalogue", "Création d'un nouveau catalogue fournisseur", true);

            return new WizardSettingListIterator(this.newCatalogPage);
        }
コード例 #10
0
        protected override IWizardSettingIterator BuildWizardPages()
        {
            this.newProjectPage = new GenericWizardSetting<NewProjectPage>("Nouveau projet", "Création d'une nouveau projet", true);

            return new WizardSettingListIterator(this.newProjectPage);
        }
コード例 #11
0
        protected override IWizardSettingIterator BuildWizardPages()
        {
            this.page = new GenericWizardSetting<ImportHardwareWizardPage>("Import de matériel", "Import de matériel", true);

            return new WizardSettingListIterator(this.page);
        }
コード例 #12
0
 protected override IWizardSettingIterator BuildWizardPages()
 {
     this.newSupplyPage = new GenericWizardSetting<NewSupplyPage>("Création d'une fourniture",
                                                                  "Vous pouvez ici créer une nouvelle fourniture", true);
     return new WizardSettingListIterator(this.newSupplyPage);
 }
コード例 #13
0
        protected override IWizardSettingIterator BuildWizardPages()
        {
            this.newDealPage = new GenericWizardSetting<NewDealPage>("Nouvelle affaire", "Création d'une nouvelle affaire", true);

            return new WizardSettingListIterator(this.newDealPage);
        }
コード例 #14
0
        protected override IWizardSettingIterator BuildWizardPages()
        {
            this.newProjectFramePage = new GenericWizardSetting<ProjectFramePage>("Nouveau chassis", "Ajout d'un chassis", true);

            return new WizardSettingListIterator(this.newProjectFramePage);
        }