C#窗体加载时显示图片
很多软件在打开是需要很多时间加载的,但是在加载的时候它会显示图片什么的,在加载完之后图片就消失了,窗体出现了,,我想知道这样的效果怎么做的,,谢谢...
很多软件在打开是需要很多时间加载的,但是在加载的时候它会显示图片什么的,在加载完之后图片就消失了,窗体出现了,,我想知道这样的效果怎么做的,,谢谢
展开
4个回答
展开全部
就是做加载进度条一个道理,开始加图片出现,加载结束图片消失,主窗体打开
牵涉到多线程编程
建两个窗体,一个是主程序窗体,一个是预加载窗体
以下是主程序入口的代码
至于启动时显示图片的窗体,自己写吧,就是建几个委托,让主线程可以调用。
using System;
using System.Collections.Generic;
using System.Windows.Forms;
using System.Threading;
namespace Thread_Initiation
{
static class Program
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
public static ManualResetEvent mre = new ManualResetEvent(false);
private static Form_Init begin;
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
begin = new Form_Init();
begin.Initiation = Initialize;
//Thread t = new Thread(ShowBegin); //辅助线程打开启动窗体
//t.Start();
//Initialize();
BeginAppContext beginContext = new BeginAppContext(new Form_Main(), begin);
Application.Run(beginContext);
//Application.Run(new Form_Main());
}
static void ShowBegin()
{
begin.ShowDialog();
}
static void Initialize(object form)
{
//mre.WaitOne(); //等待辅助线程启动好窗体,主线程才开始
Form_Init begin = form as Form_Init;
for (int i = 0; i < 100; i++)
{
begin.Invoke(begin.ShowProgress, new object[] { i.ToString() });
Thread.Sleep(100);
}
begin.Invoke(begin.CloseBegin);
}
}
public class BeginAppContext : ApplicationContext
{
Form realMainForm = null;
public BeginAppContext(Form mainForm, Form beginForm)
: base(beginForm)
{
this.realMainForm = mainForm;
}
protected override void OnMainFormClosed(object sender, EventArgs e)
{
if (sender is Form_Init)
{
base.MainForm = this.realMainForm;
base.MainForm.Show();
}
else
{
base.OnMainFormClosed(sender, e);
}
}
}
}
牵涉到多线程编程
建两个窗体,一个是主程序窗体,一个是预加载窗体
以下是主程序入口的代码
至于启动时显示图片的窗体,自己写吧,就是建几个委托,让主线程可以调用。
using System;
using System.Collections.Generic;
using System.Windows.Forms;
using System.Threading;
namespace Thread_Initiation
{
static class Program
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
public static ManualResetEvent mre = new ManualResetEvent(false);
private static Form_Init begin;
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
begin = new Form_Init();
begin.Initiation = Initialize;
//Thread t = new Thread(ShowBegin); //辅助线程打开启动窗体
//t.Start();
//Initialize();
BeginAppContext beginContext = new BeginAppContext(new Form_Main(), begin);
Application.Run(beginContext);
//Application.Run(new Form_Main());
}
static void ShowBegin()
{
begin.ShowDialog();
}
static void Initialize(object form)
{
//mre.WaitOne(); //等待辅助线程启动好窗体,主线程才开始
Form_Init begin = form as Form_Init;
for (int i = 0; i < 100; i++)
{
begin.Invoke(begin.ShowProgress, new object[] { i.ToString() });
Thread.Sleep(100);
}
begin.Invoke(begin.CloseBegin);
}
}
public class BeginAppContext : ApplicationContext
{
Form realMainForm = null;
public BeginAppContext(Form mainForm, Form beginForm)
: base(beginForm)
{
this.realMainForm = mainForm;
}
protected override void OnMainFormClosed(object sender, EventArgs e)
{
if (sender is Form_Init)
{
base.MainForm = this.realMainForm;
base.MainForm.Show();
}
else
{
base.OnMainFormClosed(sender, e);
}
}
}
}
展开全部
c#专门有加载控件,就是内容还没出来时候出个进度条等的画面 ,这个很容易弄,还有自定义的可以通过线程来实现加载进度
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
就是做加载进度条一个道理,开始加图片出现,加载结束图片消失,主窗体打开
牵涉到多线程编程
建两个窗体,一个是主程序窗体,一个是预加载窗体
以下是主程序入口的代码
至于启动时显示图片的窗体,自己写吧,就是建几个委托,让主线程可以调用。
using
System;
using
System.Collections.Generic;
using
System.Windows.Forms;
using
System.Threading;
namespace
Thread_Initiation
{
static
class
Program
{
///
<summary>
///
应用程序的主入口点。
///
</summary>
public
static
ManualResetEvent
mre
=
new
ManualResetEvent(false);
private
static
Form_Init
begin;
[STAThread]
static
void
Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
begin
=
new
Form_Init();
begin.Initiation
=
Initialize;
//Thread
t
=
new
Thread(ShowBegin);
//辅助线程打开启动窗体
//t.Start();
//Initialize();
BeginAppContext
beginContext
=
new
BeginAppContext(new
Form_Main(),
begin);
Application.Run(beginContext);
//Application.Run(new
Form_Main());
}
static
void
ShowBegin()
{
begin.ShowDialog();
}
static
void
Initialize(object
form)
{
//mre.WaitOne();
//等待辅助线程启动好窗体,主线程才开始
Form_Init
begin
=
form
as
Form_Init;
for
(int
i
=
0;
i
<
100;
i++)
{
begin.Invoke(begin.ShowProgress,
new
object[]
{
i.ToString()
});
Thread.Sleep(100);
}
begin.Invoke(begin.CloseBegin);
}
}
public
class
BeginAppContext
:
ApplicationContext
{
Form
realMainForm
=
null;
public
BeginAppContext(Form
mainForm,
Form
beginForm)
:
base(beginForm)
{
this.realMainForm
=
mainForm;
}
protected
override
void
OnMainFormClosed(object
sender,
EventArgs
e)
{
if
(sender
is
Form_Init)
{
base.MainForm
=
this.realMainForm;
base.MainForm.Show();
}
else
{
base.OnMainFormClosed(sender,
e);
}
}
}
}
牵涉到多线程编程
建两个窗体,一个是主程序窗体,一个是预加载窗体
以下是主程序入口的代码
至于启动时显示图片的窗体,自己写吧,就是建几个委托,让主线程可以调用。
using
System;
using
System.Collections.Generic;
using
System.Windows.Forms;
using
System.Threading;
namespace
Thread_Initiation
{
static
class
Program
{
///
<summary>
///
应用程序的主入口点。
///
</summary>
public
static
ManualResetEvent
mre
=
new
ManualResetEvent(false);
private
static
Form_Init
begin;
[STAThread]
static
void
Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
begin
=
new
Form_Init();
begin.Initiation
=
Initialize;
//Thread
t
=
new
Thread(ShowBegin);
//辅助线程打开启动窗体
//t.Start();
//Initialize();
BeginAppContext
beginContext
=
new
BeginAppContext(new
Form_Main(),
begin);
Application.Run(beginContext);
//Application.Run(new
Form_Main());
}
static
void
ShowBegin()
{
begin.ShowDialog();
}
static
void
Initialize(object
form)
{
//mre.WaitOne();
//等待辅助线程启动好窗体,主线程才开始
Form_Init
begin
=
form
as
Form_Init;
for
(int
i
=
0;
i
<
100;
i++)
{
begin.Invoke(begin.ShowProgress,
new
object[]
{
i.ToString()
});
Thread.Sleep(100);
}
begin.Invoke(begin.CloseBegin);
}
}
public
class
BeginAppContext
:
ApplicationContext
{
Form
realMainForm
=
null;
public
BeginAppContext(Form
mainForm,
Form
beginForm)
:
base(beginForm)
{
this.realMainForm
=
mainForm;
}
protected
override
void
OnMainFormClosed(object
sender,
EventArgs
e)
{
if
(sender
is
Form_Init)
{
base.MainForm
=
this.realMainForm;
base.MainForm.Show();
}
else
{
base.OnMainFormClosed(sender,
e);
}
}
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
使用异步来做 或者多线程
在窗体类的 构造函数里 开始异步调用(启动等待图片的线程,对于窗体线程请注意比较特殊,窗体UI线程是系统自动创建的),在窗体shown后者load事件结束异步调用或者结束多线程即可,网上有例子参考下即可。这里就给您复制网址了
在窗体类的 构造函数里 开始异步调用(启动等待图片的线程,对于窗体线程请注意比较特殊,窗体UI线程是系统自动创建的),在窗体shown后者load事件结束异步调用或者结束多线程即可,网上有例子参考下即可。这里就给您复制网址了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询