[UPDATE] 我已经在Hans Passant的评论中使用了示例和链接,并且它的工作非常好。感谢大家的帮助,我不知道在评论时如何选择答案,所以我会在未来的观众中包含此更新。
所以我试图在我的winforms应用程序中显示我的启动画面,同时在背景中加载excel实例,并允许显示公司徽标和联系信息。
我是winforms的新手,但是从互联网上的教程中,我发现你可以创建一个“空”表单并将UI更改为无边框形式,并将您的splash作为BackgroundImage属性。我用.bmp文件完成了这个,并用这段代码显示它。
private void Form1_Load(object sender, EventArgs e)
{
SplashScreen splash = new SplashScreen();
var start = DateTime.Now;
splash.Show();
xlHelper = new ExcelHelper();
var end = DateTime.Now;
Thread.Sleep(3000 - ((start - end).Milliseconds));
splash.Close();
}
这似乎在我的Windows 8机器上运行良好,而另一台Windows 7机器却在XP(SP3)上无法显示,没有任何功能。
下面,我更改了它的显示属性,包括FixedSingle FormBorderStyle而不是None,它显示的是下面的内容。所以它正在加载启动画面但无法显示背景。有没有人对此有任何见解?感谢。
答案 0 :(得分:0)
这是一种方法。
[Program.cs]
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
var formMain = new Forms.FormMain();
var splash = new Forms.FormSplash( formMain );
splash.Show();
Application.DoEvents();
Application.Run( formMain );
}
}
[FormMain.cs]
public partial class FormMain : Form
{
public FormMain()
{
// This Form is initially invisible.
// The splash screen Form is responsible to making this form visible.
//
this.Opacity = 0;
InitializeComponent();
}
}
[FormSplash.cs]
public partial class FormSplash : Form
{
Forms.FormMain _theMainForm;
public FormSplash()
{
InitializeComponent();
// ctlLogoText is a RichTextBox control.
//
this.ctlLogoText.BorderStyle = BorderStyle.None;
this.ctlLogoText.Rtf = SR.LogoText;
}
public FormSplash( Forms.FormMain theMainForm )
: this()
{
_theMainForm = theMainForm;
Application.Idle += new EventHandler( Application_Idle );
}
void Application_Idle( object sender, EventArgs e )
{
Application.Idle -= new EventHandler( Application_Idle );
if ( null != _theMainForm )
{
// theTimer is a System.Windows.Forms.Timer.
//
this.theTimer.Interval = Math.Min( 5000, Math.Max( 1000, 1000 * Settings.Default.SplashDelay ) );
this.theTimer.Start();
}
}
void theTimer_Tick( object sender, EventArgs e )
{
this.theTimer.Stop();
this.Close();
Application.DoEvents();
_theMainForm.Opacity = 100;
_theMainForm.Refresh();
_theMainForm = null;
}
}