1 Star 0 Fork 68

oilgas / ActiveReports

forked from 葡萄城 / ActiveReports 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Program.cs 804 Bytes
一键复制 编辑 原始数据 按行查看 历史
葡萄城控件 提交于 2014-09-17 14:54 . add SplashForm
using System;
using System.Collections.Generic;
using System.Text;
using System.Windows.Forms;
using AppLoadingMT;
namespace GrapeCity.ActiveReports.Samples.EndUserDesigner
{
static class Program
{
/// <summary>
///The main entry point for the application.
/// </summary>
[STAThread]
static void Main(string[] args)
{
// show the splash form
Splasher.Show();
// process application startup
DoStartup(args);
// if the form is still shown...
Splasher.Close();
}
static void DoStartup(string[] args)
{
// do whatever you need to do
EndUserDesigner f = new EndUserDesigner();
Application.Run(f);
}
}
}
C#
1
https://gitee.com/oilgas/ActiveReports.git
git@gitee.com:oilgas/ActiveReports.git
oilgas
ActiveReports
ActiveReports
master

搜索帮助