ab56a9bcf7
SVN-Revision: r240
32 lines
843 B
C#
32 lines
843 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Windows.Forms;
|
|
using DevExpress.UserSkins;
|
|
using DevExpress.Skins;
|
|
using DevExpress.LookAndFeel;
|
|
|
|
namespace AFKAbutment
|
|
{
|
|
static class Program
|
|
{
|
|
/// <summary>
|
|
/// The main entry point for the application.
|
|
/// </summary>
|
|
[STAThread]
|
|
static void Main(string[] age)
|
|
{
|
|
AboutDevCompanion DC = new AboutDevCompanion(1, false);
|
|
DC.Run();
|
|
Application.EnableVisualStyles();
|
|
Application.SetCompatibleTextRenderingDefault(false);
|
|
|
|
BonusSkins.Register();
|
|
SkinManager.EnableFormSkins();
|
|
UserLookAndFeel.Default.SetSkinStyle("DevExpress Style");
|
|
Application.Run(new FrmMain(age));
|
|
DC.Stop();
|
|
}
|
|
}
|
|
}
|