Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 vs2008 中找不到 Click event(picture1) 。但 MSDN 有 Click 事件(图 2)。为什么?
图片1:
图片2:
点击事件被标记,[BrowsableAttribute(false)]这意味着它不会显示在属性框中。这样做的原因是因为它并非旨在直接从您的代码中调用。从MonthCalendar.Click's MSDN 页面:
[BrowsableAttribute(false)]
MonthCalendar.Click's
此 API 支持 .NET Framework 基础结构,不打算直接从您的代码中使用。
有更多关于BrowsableAttribute 这里的信息。
BrowsableAttribute