가로등 지역명 표시 갯수변경 20->50

This commit is contained in:
chi
2023-03-09 23:58:59 +09:00
parent 12ade208a4
commit 3fde205c2e
18 changed files with 1203 additions and 468 deletions

21
StyleEditor/Program.cs Normal file
View File

@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace StyleEditor
{
static class Program
{
/// <summary>
/// 해당 응용 프로그램의 주 진입점입니다.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}