utiliser le système ;
en utilisant System.Collections.Generic ;
en utilisant System.Text ;
en utilisant System.Windows.Forms ;
en utilisant System.Drawing ;
espace de noms SlashScreenLib
{
classe publique SlashScreenForm:Formulaire
{
SlashScreenForm statique slashScreen ;
Bitmap bitMap ;
public statique SlashScreenForm SlashScreen
{
obtenir
{
si (slashScreen == null)
{
slashScreen = nouveau SlashScreenForm();
}
retourner slashScreen ;
}
}
public SlashScreenForm()
{
//SlashScreen肯定显示在屏幕中央
this.StartPosition = FormStartPosition.CenterScreen;
//应该没有边框
this.FormBorderStyle = FormBorderStyle.None;
//Photo de SlashScreen
bitMap = Resources.Resource.SlashScreen ;
//窗口大小与图片大小一致
this.ClientSize = bitMap.Size;
//在图片上写上字
en utilisant (Font f = new Font("宋体", 18))
{
en utilisant (Graphics g = Graphics.FromImage(bitMap))
{
g.DrawString("Jillzhang", f, Brushes.Black, 100, 142);
}
}
this.BackgroundImage = bitMap;
}
remplacement protégé void Dispose (bool disposition)
{
base.Dispose(élimination);
si (disposer)
{
si (bitMap != null)
{
bitMap.Dispose();
bitMap = nul ;
}
}
}
}
}