WinForm中实现Loading加载界面
程序员文章站
2022-10-23 08:14:27
1,LoaderForm窗体中添加PictureBox,然后添加Loading图片 2,窗体内属性设置 StartPosition :CenterScreen在屏幕中心显示 TopMost:True置顶显示 ShowInTaskbar:False不在任务栏显示 FormBorderStyle:Non ......
1,loaderform窗体中添加picturebox,然后添加loading图片
2,窗体内属性设置
startposition :centerscreen在屏幕中心显示
topmost:true置顶显示
showintaskbar:false不在任务栏显示
formborderstyle:none不显示窗体边框和标题栏
transparencykey:control颜色为control的部分透明
backcolor:control窗体背景颜色设为control
3,调用:
loadinghelper.showloadingscreen();//显示
loadinghelper.closeform();//关闭
4,显示效果如下:
5,loaderform和loadinghelper部分代码如下,ref:
完整部分见:
推荐阅读