为什么 SelectedValue 没有出现在 DropDownLists 的 Intellisense 中?

发布于 2024-10-01 17:30:16 字数 117 浏览 1 评论 0原文

它不会显示在 aspx 页面中,但会显示在代码隐藏中。

我们不应该使用它吗? 难道不是为了让智能感知列表更易于管理吗? 他们搞砸了吗?

如果我记得以前的版本中也没有……有人知道这个故事吗?

It doesn't show up in aspx pages, but it does in codebehind.

Are we not supposed to be using it?
Is it not there to make the intellisense list more manageable?
Did they screw up?

If I recall it wasn't there in previous versions as well... Anyone know the story?

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

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

发布评论

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

评论(1

木森分化 2024-10-08 17:30:16

因为该属性的声明包括[BrowsableAttribute(false)]。这是从 .NET 3.5 开始添加的。

BrowsableAttribute 构造函数标记的成员可浏览参数设置为false不适合设计时编辑,因此不会显示在可视化设计器中。

我的猜测是,因为它也可以在项目中设置,所以会引起混乱。

Because the declaration for the property includes [BrowsableAttribute(false)]. This was added starting in .NET 3.5.

Members marked with the BrowsableAttribute constructor's browsable parameter set to false are not appropriate for design-time editing and therefore are not displayed in a visual designer.

My guess is since it is also settable in the item, it causes confusion.

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