在 ASP.Net 中隐藏控件属性

发布于 2024-07-18 20:00:50 字数 217 浏览 8 评论 0原文

我正在构建一个由 Infragistics WebDataGrid、添加按钮和一些 ModalPopupExtender 组成的复合控件。 我希望这个复合控件的设计时使用尽可能简单。 意思是,一旦他们键入,就不希望有任何 AccessKey、EnableTheming 以及所有这些完全不相关的属性在设计此控件时出现。

底线:有人知道如何隐藏自定义控件中的属性吗?

乔纳森

I am building a composite control that is composed of an Infragistics WebDataGrid, an add Button, and some ModalPopupExtenders. I want design-time usage of this composite control to be as simple as possible. Meaning, as soon as they type not want there to be any AccessKey, EnableTheming, and all of those completely irrelevant properties to even show up when designing this control.

Bottom line: Anyone know how to hide an attribute in a custom control?

Jonathan

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

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

发布评论

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

评论(1

苏辞 2024-07-25 20:00:50

您可以覆盖所有属性并为其添加可浏览属性:

[Browsable(false)]
public override string AccessKey
{
    get
    {
        return base.AccessKey;
    }
    set
    {
        base.AccessKey = value;
    }
}

you can override all the properties and put a Browsable attribute on them:

[Browsable(false)]
public override string AccessKey
{
    get
    {
        return base.AccessKey;
    }
    set
    {
        base.AccessKey = value;
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文