码迷,mamicode.com
首页 > Windows程序 > 详细

C#认证考试试题汇编3_1

时间:2017-09-20 23:17:08      阅读:296      评论:0      收藏:0      [点我收藏+]

标签:button   oid   status   idt   strip   image   his   rgs   tools   

 

 

技术分享

private void 大ToolStripMenuItem_Click(object sender, EventArgs e)
{
this.Width = 600;
this.Height = 400;
toolStripStatusLabel1.Text = "大窗体";
}

private void 中ToolStripMenuItem_Click(object sender, EventArgs e)
{
this.Width = 300;
this.Height = 200;
toolStripStatusLabel1.Text = "中窗体";
}

private void 小ToolStripMenuItem_Click(object sender, EventArgs e)
{
this.Width = 150;
this.Height = 120;
toolStripStatusLabel1.Text = "小窗体";
}

private void toolStripButton1_Click(object sender, EventArgs e)
{
this.Width = 600;
this.Height = 400;
toolStripStatusLabel1.Text = "大窗体";
}

private void toolStripButton2_Click(object sender, EventArgs e)
{
this.Width = 300;
this.Height = 200;
toolStripStatusLabel1.Text = "中窗体";
}

private void toolStripButton3_Click(object sender, EventArgs e)
{
this.Width = 150;
this.Height = 120;
toolStripStatusLabel1.Text = "小窗体";
}
}
}

技术分享

 

技术分享

 

C#认证考试试题汇编3_1

标签:button   oid   status   idt   strip   image   his   rgs   tools   

原文地址:http://www.cnblogs.com/lzy2016/p/7565286.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!