为什么 SelectedValue 没有出现在 DropDownLists 的 Intellisense 中?
它不会显示在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因为该属性的声明包括
[BrowsableAttribute(false)]
。这是从 .NET 3.5 开始添加的。我的猜测是,因为它也可以在项目中设置,所以会引起混乱。
Because the declaration for the property includes
[BrowsableAttribute(false)]
. This was added starting in .NET 3.5.My guess is since it is also settable in the item, it causes confusion.