OSDN Git Service

二重起動イベントを受け取るよう修正(未実装)。
[strokestylet/CsWin10Desktop3.git] / StrokeStyleT / Program.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Threading.Tasks;
5 using System.Windows.Forms;
6
7 namespace SST
8 {
9         static class Program
10         {
11                 [STAThread]
12                 static void Main( string[] args )
13                 {
14                         var sst = new StrokeStyleT();
15                         sst.Run( args );
16                 }
17         }
18 }