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


C# HtmlElement.Text方法代码示例

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


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

示例1: CreateTextArea

        public IHtmlNode CreateTextArea()
        {
            var content = new HtmlElement("textarea")
                            .Attributes(new
                            {
                                cols = "20",
                                rows = "5",
                                name = editor.Name,
                                id = editor.Id + "-value"
                            })
                            .Attributes(editor.GetUnobtrusiveValidationAttributes())
                            .PrependClass(UIPrimitives.Content, UIPrimitives.Editor.RawContent);

            var value = editor.GetValue<string>(editor.Value);

            if (!string.IsNullOrEmpty(value))
            {
                content.Text(value);
            }
            else if (editor.Content != null)
            {
                editor.Template.Apply(content);
            }
            else if (editor.Template.InlineTemplate != null)
            {
                content.Text(editor.Template.InlineTemplate(null).ToString());
            }

            return content;
        }
开发者ID:vialpando09,项目名称:RallyPortal2,代码行数:30,代码来源:EditorHtmlBuilder.cs

示例2: CreateTextArea

        public IHtmlNode CreateTextArea()
        {
            var element = new HtmlElement(editor.TagName).Attributes(new { name = editor.Name, id = editor.Id });
            var inline = editor.TagName != "textarea";

            if (inline)
            {
                element.Attribute("contentEditable", "true");
            }
            else
            {
                element.Attributes(new
                {
                    cols = "20",
                    rows = "5"
                });
            }

            element.Attributes(editor.GetUnobtrusiveValidationAttributes())
                   .Attributes(editor.HtmlAttributes);

            var value = editor.GetValue<string>(editor.Value);

            if (!string.IsNullOrEmpty(value))
            {
                if (inline)
                {
                    element.Html(value);
                }
                else
                {
                    element.Text(value);
                }
            }
            else if (editor.Content != null)
            {
                editor.Template.Apply(element);
            }
            else if (editor.Template.InlineTemplate != null)
            {
                var html = editor.Template.InlineTemplate(null).ToString();

                if (inline)
                {
                    element.Html(html);
                }
                else
                {
                    element.Text(html);
                }
            }

            return element;
        }
开发者ID:jstevenson81,项目名称:wodgeaux,代码行数:54,代码来源:EditorHtmlBuilder.cs

示例3: CreateButton

        public IHtmlNode CreateButton()
        {
            var content = new HtmlElement("button")
                .Attribute("id", button.Id);

            var text = button.GetValue<string>(button.Text);
            if (!string.IsNullOrEmpty(text))
            {
                content.Text(text);
            }
            return content;
        }
开发者ID:Nut007,项目名称:kendo-plugins,代码行数:12,代码来源:ButtonHtmlBuilder.cs

示例4: CreateActionLink

        public IHtmlNode CreateActionLink()
        {
            var content = new HtmlElement("a")
                .Attribute("id", actionLink.Id);

            var text = actionLink.GetValue<string>(actionLink.Text);
            if (!string.IsNullOrEmpty(text))
            {
                content.Text(text);
            }
            return content;
        }
开发者ID:EdsonF,项目名称:kendo-plugins,代码行数:12,代码来源:ActionLinkHtmlBuilder.cs


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