[성현모] TRA Recovery 생성

This commit is contained in:
SHM
2025-04-16 09:12:17 +09:00
parent ee0ebb6c62
commit 5c3405399e
118 changed files with 172244 additions and 0 deletions

View File

@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
using DevExpress.UserSkins;
using DevExpress.Skins;
using DevExpress.LookAndFeel;
using SystemX.Product.TRA;
namespace SystemX.Product.CP.TRA
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MainForm());
}
}
}