博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
如何制作winform得启动画面
阅读量:6001 次
发布时间:2019-06-20

本文共 982 字,大约阅读时间需要 3 分钟。

None.gif
using
 System;
None.gif
using
 System.Collections.Generic;
None.gif
using
 System.Text;
None.gif
using
 System.Windows.Forms;
None.gif
using
 System.Drawing;
None.gif
None.gif
namespace
 SlashScreenLib
ExpandedBlockStart.gifContractedBlock.gif
dot.gif
{
InBlock.gif    
public class SlashScreenForm:Form
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
InBlock.gif        
static SlashScreenForm slashScreen;
InBlock.gif        Bitmap bitMap;
InBlock.gif        
public static SlashScreenForm SlashScreen
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            
get
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                
if (slashScreen == null)
ExpandedSubBlockStart.gifContractedSubBlock.gif                
dot.gif{
InBlock.gif                    slashScreen 
= new SlashScreenForm();
ExpandedSubBlockEnd.gif                }
InBlock.gif                
return slashScreen;
ExpandedSubBlockEnd.gif            }
ExpandedSubBlockEnd.gif        }
InBlock.gif 
InBlock.gif        
public SlashScreenForm()
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            
//SlashScreen肯定显示在屏幕中央
InBlock.gif
            this.StartPosition = FormStartPosition.CenterScreen;
InBlock.gif            
//应该没有边框
InBlock.gif
            this.FormBorderStyle = FormBorderStyle.None;
InBlock.gif            
//获取SlashScreen要显示的图片
InBlock.gif
            bitMap = Resources.Resource.SlashScreen;
InBlock.gif            
//窗口大小与图片大小一致
InBlock.gif
            this.ClientSize = bitMap.Size;
InBlock.gif            
//在图片上写上字
InBlock.gif
            using (Font f = new Font("宋体"18))
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                
using (Graphics g = Graphics.FromImage(bitMap))
ExpandedSubBlockStart.gifContractedSubBlock.gif                
dot.gif{
InBlock.gif                    g.DrawString(
"Jillzhang", f, Brushes.Black, 100142);
ExpandedSubBlockEnd.gif                }
ExpandedSubBlockEnd.gif            }
InBlock.gif            
this.BackgroundImage = bitMap;
ExpandedSubBlockEnd.gif        }
InBlock.gif        
protected override void Dispose(bool disposing)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            
base.Dispose(disposing);
InBlock.gif            
if (disposing)
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                
if (bitMap != null)
ExpandedSubBlockStart.gifContractedSubBlock.gif                
dot.gif{
InBlock.gif                    bitMap.Dispose();
InBlock.gif                    bitMap 
= null;
ExpandedSubBlockEnd.gif                }
ExpandedSubBlockEnd.gif            }
ExpandedSubBlockEnd.gif        }
ExpandedSubBlockEnd.gif    }
ExpandedBlockEnd.gif}
None.gif
你可能感兴趣的文章
[Head First设计模式]面向对象的3特征5原则
查看>>
linux下对符合条件的文件大小做汇总统计的简单命令
查看>>
jxta 2.8x启动了
查看>>
Entity Framework Model First下改变数据库脚本的生成方式
查看>>
【6年开源路】海王星给你好看!FineUI v4.0正式版暨《FineUI3to4一键升级工具》发布!...
查看>>
Windows Phone开发(38):动画之PointAnimation
查看>>
有道翻译API
查看>>
BIOS和Bootloader的对比
查看>>
mvn exec用法,运行jar后台驻留进程
查看>>
Console-算法:fun1(do while)
查看>>
堆排序实例
查看>>
openSSL漏洞原理及安全加固
查看>>
cocos2d-x 3.0 事件分发机制
查看>>
转: seajs知识点与cmd规范
查看>>
SWD模式和JTAG模式
查看>>
springMVC+MyBatis+Spring 整合(4) ---解决Spring MVC 对AOP不起作用的问题
查看>>
logrotate 日志轮询(转存)
查看>>
Asp.net下使用HttpModule模拟Filter,实现权限控制
查看>>
iOS文件处理类
查看>>
【USACO】checker
查看>>