OSDN Git Service

DTXManiaソリューション、DTXManiaプロジェクト、DTXCreatorプロジェクト、FDKプロジェクトについて英語化。
[dtxmania/dtxmania.git] / DTXCreator / コード / 00.全体 / Program.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Globalization;
4 using System.Threading;
5 using System.Windows.Forms;
6
7 namespace DTXCreator
8 {
9         internal static class Program
10         {
11                 [STAThread]
12                 private static void Main()
13                 {
14 #if DEBUG
15 #if USE_ENGLISHRESOURCE
16                         Thread.CurrentThread.CurrentUICulture = new CultureInfo( "en-GB", false );      // yyagi; For testing English resources
17 #elif USE_GERMANRESOURCE
18                         Thread.CurrentThread.CurrentCulture = new CultureInfo( "de-DE", false );        // yyagi; For testing decimal point in German resources
19 #endif
20 #endif
21                         Application.EnableVisualStyles();
22                         Application.SetCompatibleTextRenderingDefault( false );
23                         Application.Run( new Cメインフォーム() );
24                 }
25         }
26 }