시스템 사용;
System.Collections.Generic을 사용합니다.
System.Text 사용;
System.Windows.Forms 사용;
System.드로잉 사용;
네임스페이스 SlashScreenLib
{
공개 클래스 SlashScreenForm:Form
{
정적 SlashScreenForm slashScreen;
비트맵 비트맵;
공개 정적 SlashScreenForm SlashScreen
{
얻다
{
if (slashScreen == null)
{
slashScreen = 새로운 SlashScreenForm();
}
슬래시스크린을 반환합니다;
}
}
공개 슬래시스크린폼()
{
//SlashScreen이 屏幕中央에 있습니다.
this.StartPosition = FormStartPosition.CenterScreen;
//应该没有边框
this.FormBorderStyle = FormBorderStyle.None;
//获取SlashScreen要显示의 사진
bitMap = Resources.Resource.SlashScreen;
//窗口大小与图文大小一致
this.ClientSize = bitMap.Size;
//여기에 있는 사진 위의 내용
(Font f = new Font("宋体", 18)) 사용
{
(그래픽 g = Graphics.FromImage(bitMap)) 사용
{
g.DrawString("Jillzhang", f, Brushes.Black, 100, 142);
}
}
this.BackgroundImage = 비트맵;
}
보호된 재정의 void Dispose(bool disposing)
{
base.Dispose(처리);
만약 (처분)
{
if (비트맵 != null)
{
bitMap.Dispose();
비트맵 = null;
}
}
}
}
}