窗口afterload事件
'工具条
Dim ct2 As New Windows.Forms.ToolStrip
e.Form.Panel.Controls.Add(ct2)
Dim ToolStripButton01 As New Windows.Forms.ToolStripButton("新增",getImage("add.gif"))
ct2.items.add(ToolStripButton01)
Dim ToolStripButton02 As New Windows.Forms.ToolStripButton("修改",getImage("edit.gif"))
ct2.items.add(ToolStripButton02)
Dim ToolStripButton03 As New Windows.Forms.ToolStripButton("保存",getImage("save.gif"))
ct2.items.add(ToolStripButton03)
Dim ToolStripButton04 As New Windows.Forms.ToolStripButton("删除",getImage("delete.gif"))
ct2.items.add(ToolStripButton04)
Dim ToolStripButton05 As New Windows.Forms.ToolStripButton("撤销",getImage("Reject.gif"))
窗口里全局事件click要怎么写了