Files
Karodeung/StyleEditor/Form1.cs

26 lines
511 B
C#

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)
{
}
}
}