小山子

  博客园 :: 首页 :: 新随笔 :: 联系 :: 订阅 :: 管理 ::

005_My005App_工具栏

 

Code:

 

private void tsbExit_Click(object sender, EventArgs e)
{
    this.Close();
}

private void tsbRed_Click(object sender, EventArgs e)
{
    this.BackColor = Color.Red;
}

private void tsbYellow_Click(object sender, EventArgs e)
{
    this.BackColor = Color.Yellow;
}

private void tsbBlue_Click(object sender, EventArgs e)
{
    this.BackColor = Color.Blue;
}

private void tsbAbout_Click(object sender, EventArgs e)
{
    MessageBox.Show("thanks for use!", "About");
}

 

参考下图:

 

image

posted on 2010-10-21 19:28  小山子  阅读(152)  评论(1)    收藏  举报