public void LoadSubPage() { this.SubPage = new StaticPage(this.Config.StaticlPath, (this as StaticTag).StaticName, Deep, this.Config); if (Config.convert) { SubPage.ConverterTags(); } }
public void LoadSubPage() { ItemPage itempage = null; if (HasStyle()) { itempage = new ItemPage(this.Style, Deep, this.Config, this.TagName); } else { itempage = new ItemPage(this.Config.ItemPath, this.ItemName, Deep, this.Config); } this.SubPage = itempage.GetItemInstance(); }
public void LoadSubPage() { this.SubPage = new LabelPage(this.Config.LabelPath, (this as LabelTag).LabeName, Deep, this.Config); }