使用系统;
使用 System.Collections.Generic;
使用系统文本;
使用 System.Windows.Forms;
使用系统绘图;
命名空间 SlashScreenLib
{
公共类 SlashScreenForm:Form
{
静态 SlashScreenForm 斜线屏幕;
位图位图;
公共静态 SlashScreenForm SlashScreen
{
得到
{
if (slashScreen == null)
{
斜线屏幕=新的斜线屏幕形式();
}
返回斜线屏幕;
}
}
公共 SlashScreenForm()
{
//SlashScreen肯定显示在屏幕中央
this.StartPosition = FormStartPosition.CenterScreen;
//应该没有陌生人
this.FormBorderStyle = FormBorderStyle.None;
//获取SlashScreen要显示的图片
位图 = Resources.Resource.SlashScreen;
//窗口大小与图片大小一致
this.ClientSize = bitMap.Size;
//在图片上写上字
using (Font f = new Font("宋体", 18))
{
使用 (图形 g = Graphics.FromImage(bitMap))
{
g.DrawString("Jillzhang", f, Brushes.Black, 100, 142);
}
}
this.BackgroundImage = 位图;
}
受保护的覆盖无效处置(布尔处置)
{
基础.处置(处置);
如果(处置)
{
if (位图!= null)
{
位图.Dispose();
位图=空;
}
}
}
}
}