示例#1
0
 public void LoadSubPage()
 {
     this.SubPage = new StaticPage(this.Config.StaticlPath, (this as StaticTag).StaticName, Deep, this.Config);
     if (Config.convert)
     {
         SubPage.ConverterTags();
     }
 }
示例#2
0
 public void LoadSubPage()
 {
     this.SubPage = new StaticPage(this.Config.StaticlPath, (this as StaticTag).StaticName, Deep, this.Config);
     if (Config.convert)
     {
         SubPage.ConverterTags();
     }
 }
示例#3
0
        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();
        }
示例#4
0
 public void LoadSubPage()
 {
     this.SubPage = new LabelPage(this.Config.LabelPath, (this as LabelTag).LabeName, Deep, this.Config);
 }
示例#5
0
 public void LoadSubPage()
 {
     this.SubPage = new LabelPage(this.Config.LabelPath, (this as LabelTag).LabeName, Deep, this.Config);
 }
示例#6
0
 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();
 }