如何隐藏页面中的所有面板

发布于 2024-09-19 19:55:54 字数 192 浏览 2 评论 0原文

我正在使用 asp.net 4。

我需要为页面的所有面板 WebControl 设置其可见性为 false,就像

uxTypesDisplayer.Visible = false;

我需要为所有此面板设置可见性而不提及每个面板的单个 ID。

小伙伴们知道该怎么做吗?谢谢

I am using asp.net 4.

I need set up for all Panels WebControl for a page their visibility to false like

uxTypesDisplayer.Visible = false;

I need to setup visibility for all this panel without mention the single ID for every single panel.

Do you know guys how to do it? Thanks

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

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

发布评论

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

评论(3

小耗子 2024-09-26 19:55:56
public void HidePanelsRecursively(Control container)
{
    if (container is Panel)
        container.Visible = false;

    foreach (Control ctrl in container.Controls)
        HidePanelsRecursively(ctrl);
}

然后在页面的代码隐藏中这样调用它:

HidePanelsRecursively(this);
public void HidePanelsRecursively(Control container)
{
    if (container is Panel)
        container.Visible = false;

    foreach (Control ctrl in container.Controls)
        HidePanelsRecursively(ctrl);
}

And then just call it like this in your Page's code-behind:

HidePanelsRecursively(this);
青丝拂面 2024-09-26 19:55:56

在代码隐藏中,您可以将所有内容放入一个父 Panel 中,并将其 Visible 属性设置为 false;

In the code-behind, you can just put everything in one parent Panel and set it's Visible property to false;

哑剧 2024-09-26 19:55:56

你为什么需要这个?

您是否尝试默认不显示任何面板,然后通过某种逻辑显示其中 1 个或多个面板?

在这种情况下,请在每个面板的 aspx 页面中添加参数 visible="false"

why do you need this?

are you trying to show no panel by default, and then by some logic display 1 or more of them?

in this case, add the parameter visible="false" in your aspx page for each panel.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文