ASP.AJAX TabContainer/TabPanel 定制

发布于 2024-07-07 18:12:06 字数 98 浏览 14 评论 0原文

是否可以使用 AjaxToolkit 将选项卡的位置设置为选项卡容器的底部? 你确实对CSS有一定的控制权,但我对CSS还不够了解,无法确定它是否可行?

谢谢

Is it possible to set the position of the tabs to be at the bottom of the tabcontainer using the AjaxToolkit? You do have some control over the CSS but I'm not au-fait enough with CSS to see whether it's feasible?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

時窥 2024-07-14 18:12:06

您无法使用此控件的现成版本,但您可以轻松修改源代码以创建您自己的版本。 查看 AjaxControlToolkit\Tabs\TabContainer.cs(如下)。 您需要颠倒顺序,以便 RenderHeader() 部分位于 RenderChildren() 部分下方。 或者,您可以向控件添加一个名为“RenderHeaderFirst”的属性或类似的属性来实现相同的功能:

    protected override void RenderContents(HtmlTextWriter writer)
    {
        Page.VerifyRenderingInServerForm(this);

        // rendering the tabs (header)
        writer.AddAttribute(HtmlTextWriterAttribute.Id, ClientID + "_header");
        writer.RenderBeginTag(HtmlTextWriterTag.Div);
        {
            RenderHeader(writer);
        }
        writer.RenderEndTag();

        // rendering the contents of the tabs (children)
        if (!Height.IsEmpty)
            writer.AddStyleAttribute(HtmlTextWriterStyle.Height, Height.ToString());

        writer.AddAttribute(HtmlTextWriterAttribute.Id, ClientID + "_body");
        writer.RenderBeginTag(HtmlTextWriterTag.Div);
        {
            RenderChildren(writer);
        }
        writer.RenderEndTag();
    }

PS 我自己还没有尝试过这个,但它看起来是正确的方向。

You can't with the off-the-shelf version of this control, but you could easily modify the source code to create your own version. Checkout AjaxControlToolkit\Tabs\TabContainer.cs (below). You would need to reverse the order so that the RenderHeader() Part comes below the RenderChildren() part. Alternatively you could add a property to the control called "RenderHeaderFirst" or something like that to achieve the same functionality:

    protected override void RenderContents(HtmlTextWriter writer)
    {
        Page.VerifyRenderingInServerForm(this);

        // rendering the tabs (header)
        writer.AddAttribute(HtmlTextWriterAttribute.Id, ClientID + "_header");
        writer.RenderBeginTag(HtmlTextWriterTag.Div);
        {
            RenderHeader(writer);
        }
        writer.RenderEndTag();

        // rendering the contents of the tabs (children)
        if (!Height.IsEmpty)
            writer.AddStyleAttribute(HtmlTextWriterStyle.Height, Height.ToString());

        writer.AddAttribute(HtmlTextWriterAttribute.Id, ClientID + "_body");
        writer.RenderBeginTag(HtmlTextWriterTag.Div);
        {
            RenderChildren(writer);
        }
        writer.RenderEndTag();
    }

P.S. I haven't tried this myself, but it looks like the right direction to go.

孤城病女 2024-07-14 18:12:06

或者您可以只使用 TabContainer 的 TabStripPlacement 属性...

TabContainer Properties

  • ActiveTabChanged (Event) - 当选项卡打开时在服务器端触发回发后更改
  • OnClientActiveTabChanged - 附加到客户端 tabChanged 事件的 javascript 函数的名称
  • CssClass - 用于定义自定义外观的 css 类覆盖对于选项卡。 有关更多详细信息,请参阅选项卡主题部分。
  • ActiveTabIndex - 显示的第一个选项卡
  • 高度 - 设置选项卡主体的高度(不包括 TabPanel 标题)
  • 宽度 - 设置选项卡主体的宽度
  • ScrollBars - 是否在 TabContainer 主体中显示滚动条(无、水平、垂直、双向、自动)
  • TabStripPlacement - 是否渲染容器顶部或底部的选项卡(顶部、底部)

Or you could just use the TabStripPlacement property of the TabContainer...

TabContainer Properties

  • ActiveTabChanged (Event) - Fired on the server side when a tab is changed after a postback
  • OnClientActiveTabChanged - The name of a javascript function to attach to the client-side tabChanged event
  • CssClass - A css class override used to define a custom look and feel for the tabs. See the Tabs Theming section for more details.
  • ActiveTabIndex - The first tab to show
  • Height - sets the height of the body of the tabs (does not include the TabPanel headers)
  • Width - sets the width of the body of the tabs
  • ScrollBars - Whether to display scrollbars (None, Horizontal, Vertical, Both, Auto) in the body of the TabContainer
  • TabStripPlacement - Whether to render the tabs on top of the container or below (Top, Bottom)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文