private void toolBar1_ButtonClick(object sender, System.Windows.Forms.ToolBarButtonClickEventArgs e)
{
 //判断点击的是哪个按钮,然后做出相应的动作
if (e.Button==this.toolBarButton1)
{
.........
}if (e.Button==this.toolBarButton2)
{
..........
}...............