12345678910111213141516171819 |
- using System;
- using System.Windows.Forms;
- namespace CLIP.eForm.Consent.Dfh.UI
- {
- static class Program
- {
- /// <summary>
- /// 해당 응용 프로그램의 주 진입점입니다.
- /// </summary>
- [STAThread]
- static void Main()
- {
- Application.EnableVisualStyles();
- Application.SetCompatibleTextRenderingDefault(false);
- Application.Run(new ConsentStartForm());
- }
- }
- }
|