Created
July 30, 2016 06:45
-
-
Save mattn9x/d9afd7b7f0da563763325a21b4c832e0 to your computer and use it in GitHub Desktop.
C#Dev
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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