winform界面美化

一,欢迎界面:

1.1,添加一个FrmSplashScreen窗体

属性设置:

ShowInTaskBar-->False:不显示任务栏图标

StartPositon-->CenterScreen:程序置于屏幕*

Size-->700,400:背景图片的尺寸

FormBorderStyle-->None:取消窗体边框,

1.2,添加一个PictureBox    pic_Background

属性设置:

Dock-->Fill

SizeMode-->StretchImage

Image-->选择图片

1.3 添加panel  panel_ProgressBarContainer

属性设置

Dock-->Bottom:放在最下面

再添加一个panel panel_ProgressBar

拖动到panel_ProgressBarContainer的左边,拉到合适的宽度

winform界面美化

 

 1.4 添加timer控件

winform界面美化

 

 timer事件的代码,实现滚动条的效果

        private void timer_ProgressBar_Tick(object sender, EventArgs e)
        {
            panel_ProgressBar.Width += 5;
            if (panel_ProgressBar.Width >= panel_ProgressBarContainer.Width)
            {
                timer_ProgressBar.Stop();
                this.DialogResult = DialogResult.OK;
            }
        }

1.5  在应用程序的主入口添加下面的代码  Program.cs

winform界面美化

 

 1.6 最终效果

winform界面美化

 

 另外:Label的透明设置方法,见我的另外的一个博客

  

 

上一篇:curses.panel (Operating System) – Python 中文开发手册


下一篇:Java基于UDP的GUI界面简易聊天室课程实验(获取本机IP、IDEA同个程序运行两次设置方法)