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 scre开发者_StackOverflow中文版w up?
If I recall it wasn't there in previous versions as well... Anyone know the story?
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.
精彩评论