在IDE编辑环境上点击控件会触发哪些事件

求教:在IDE编辑环境下点击控件会触发哪些事件?
实在是找不到相关的资料,不得以只得向诸位高手请教了,还望大家赐教。

------解决方案--------------------
http://msdn.microsoft.com/zh-cn/library/system.windows.forms.design.controldesigner.aspx
------解决方案--------------------
打开随便一个常用控件的源代码,例如TextBox,你可以看到一开头的标签声明
[Designer("System.Windows.Forms.Design.TextBoxDesigner, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"), ComVisible(true), SRDescription("DescriptionTextBox"), ClassInterface(ClassInterfaceType.AutoDispatch)]
public class TextBox : TextBoxBase

而复杂一点的控件,比如看TreeView的
[Designer("System.Windows.Forms.Design.TreeViewDesigner, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"), DefaultEvent("AfterSelect"), ComVisible(true), Docking(DockingBehavior.Ask), SRDescription("DescriptionTreeView"), ClassInterface(ClassInterfaceType.AutoDispatch), DefaultProperty("Nodes")]
public class TreeView : Control
这就是你要了解的!