예제 #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
파일: LabelTag.cs 프로젝트: ichynul/vowstag
 public void LoadSubPage()
 {
     this.SubPage = new LabelPage(this.Config.LabelPath, (this as LabelTag).LabeName, Deep, this.Config);
 }
예제 #5
0
파일: LabelTag.cs 프로젝트: ichynul/vowstag
 public void LoadSubPage()
 {
     this.SubPage = new LabelPage(this.Config.LabelPath, (this as LabelTag).LabeName, Deep, this.Config);
 }
예제 #6
0
파일: ListTag.cs 프로젝트: ichynul/vowstag
 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();
 }