新建个窗体,在窗体中放个图片,然后用Timer控制窗体到什么时候不显示。
就这样。

解决方案 »

  1.   

    看看这里的:
    http://www.codeproject.com/csharp/apploadingarticle.asp?target=splash
      

  2.   

    给你个例子:
    static void Main() 
    {
                               //ShowSplash使一个方法,显示一个splash窗体
    System.Threading.Thread thSP = new System.Threading.Thread(new System.Threading.ThreadStart(ShowSplash));
    thSP.Start();
    thSP.Join();
    if (thSP != null)
    thSP = null;
    if (frmMain.g_ConnectSuccessed)
    { if((new frmLogon()).ShowDialog() == DialogResult.OK)
    {
    Application.Run(new frmMainForm());
    }
    else
    Application.Exit();
    } }
    ——————————————————————————————
    /*******************************
     * 功能:显示背景图片
     * *****************************/
    static private void ShowSplash()
    {
    frmSplash formbgd = new frmSplash();
    formbgd.ShowDialog();
    }
      

  3.   

    不能showdialog(),这样就不能执行后面的语句了了,在form的Load中用
    frmFlash myForm=new frmFlash();
    myForm.Show();
    其他代码……
    myForm.Close();
      

  4.   

    http://expert.csdn.net/Expert/topic/2562/2562696.xml?temp=.4346887