Skip to content

Instantly share code, notes, and snippets.

@mattn9x
Created July 30, 2016 06:45
Show Gist options
  • Save mattn9x/d9afd7b7f0da563763325a21b4c832e0 to your computer and use it in GitHub Desktop.
Save mattn9x/d9afd7b7f0da563763325a21b4c832e0 to your computer and use it in GitHub Desktop.
C#Dev
using QlNhanSuBenhVien.UserInterface;
using System;
using System.Windows.Forms;
namespace QlNhanSuBenhVien
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
DevExpress.Skins.SkinManager.EnableFormSkins();
DevExpress.UserSkins.BonusSkins.Register();
Application.Run(new FrmChinh());
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment