가로등 지역명 표시 갯수변경 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

25
StyleEditor/Form1.cs Normal file
View File

@@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace StyleEditor
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
this.Text = Application.ProductName + " ver" + Application.ProductVersion;
}
private void Form1_Load(object sender, EventArgs e)
{
}
}
}