当前位置: 首页>>代码示例>>C#>>正文


C# FixtureLibrary.BuildTopLevelGraph方法代码示例

本文整理汇总了C#中StoryTeller.Model.FixtureLibrary.BuildTopLevelGraph方法的典型用法代码示例。如果您正苦于以下问题:C# FixtureLibrary.BuildTopLevelGraph方法的具体用法?C# FixtureLibrary.BuildTopLevelGraph怎么用?C# FixtureLibrary.BuildTopLevelGraph使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在StoryTeller.Model.FixtureLibrary的用法示例。


在下文中一共展示了FixtureLibrary.BuildTopLevelGraph方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: TestEditorTag

        public TestEditorTag(FixtureLibrary library)
            : base("div")
        {
            AddClass("main");
            Add("h2").AddClass(HtmlClasses.TEST_NAME);
            Id("testEditor");

            AddClass(HtmlClasses.TEST_EDITOR);

            _container = Add("div").AddClasses("container", HtmlClasses.SECTION, "test-editor");

            FixtureGraph fixture = library.BuildTopLevelGraph();

            HtmlTag holder = new HolderTag(fixture).AddClass("top-level-holder");
            holder.Children.Last().Render(false);

            Container
                .MetaData(GrammarConstants.LEAF_NAME, GrammarConstants.TEST)
                .MetaData(GrammarConstants.FIXTURE, GrammarConstants.TEST)
                .MetaData(GrammarConstants.SELECTION_MODE, SelectionMode.OneOrMore.ToString())
                .Append(holder)
                .Append(new HtmlTag("hr"));

            Container.ActionLink(fixture.Policies.AddGrammarText, GrammarConstants.ADD_SECTION_ACTIVATOR);
            Container.Append(new GrammarSelector(fixture).Build());
        }
开发者ID:adymitruk,项目名称:storyteller,代码行数:26,代码来源:TestEditorTag.cs

示例2: TestEditorTag

        public TestEditorTag(FixtureLibrary library)
        {
            FixtureGraph fixture = library.BuildTopLevelGraph();

            HtmlTag selector = new GrammarSelector(fixture).Build();

            Container
                .MetaData(GrammarConstants.LEAF_NAME, GrammarConstants.TEST)
                .MetaData(GrammarConstants.FIXTURE, GrammarConstants.TEST)
                .MetaData(GrammarConstants.SELECTION_MODE, SelectionMode.OneOrMore.ToString())
                .Child(new HolderTag(fixture))
                .Child(selector);
        }
开发者ID:wbinford,项目名称:storyteller,代码行数:13,代码来源:TestEditorTag.cs

示例3: SetUp

        public void SetUp()
        {
            library = new FixtureLibrary();
            library.FixtureFor("Math").Policies.IsPrivate = false;
            library.FixtureFor("Algebra").Policies.IsPrivate = false;
            library.FixtureFor("MathDetails").Policies.IsPrivate = true;
            library.FixtureFor("Calculus").Policies.IsPrivate = false;

            topFixture = library.BuildTopLevelGraph();

            mathSection = topFixture.GrammarFor("Math").ShouldBeOfType<EmbeddedSection>();
        }
开发者ID:GaryLCoxJr,项目名称:StoryTeller2,代码行数:12,代码来源:FixtureLibraryTester.cs


注:本文中的StoryTeller.Model.FixtureLibrary.BuildTopLevelGraph方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。