首页 > Windows开发 > 详细

C#认证3章

时间:2017-09-25 23:39:55      阅读:260      评论:0      收藏:0      [点我收藏+]

主菜单控件 MainMenu

工具栏控件 toolStrip

状态栏控件 statusStrip

Size、Location属性需要new,而其他不需要

单击菜单项的menuItem事件后,状态面板中显示相应的窗体尺寸信息

this.toolStripStatusLabel1.Text= "大窗体";

 private void Form1_Load(object sender, EventArgs e)
        {
            this.Size = new Size(300, 200);
        }

        private void toolStripMenuItem1_Click(object sender, EventArgs e)
        {
            this.Size = new Size(600, 400);
            this.toolStripStatusLabel1.Text= "大窗体";
        }

        private void toolStripMenuItem2_Click(object sender, EventArgs e)
        {
            this.Size = new Size(300, 200);
            this.toolStripStatusLabel1.Text = "中窗体";
        }

        private void toolStripMenuItem3_Click(object sender, EventArgs e)
        {
            this.Size = new Size(150, 120);
            this.toolStripStatusLabel1.Text = "小窗体";
        }

技术分享

 

 

背景色

this.BackColor = Color.Red;

前景色

this.ForeColor = Color.Black;

C#认证3章

原文:http://www.cnblogs.com/Guara/p/7594471.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!