-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
37 lines (34 loc) · 1.04 KB
/
Copy pathProgram.cs
File metadata and controls
37 lines (34 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Globalization;
using System.Threading;
namespace WinWisper
{
static class Program
{
/// <summary>
/// アプリケーションのメイン エントリ ポイントです。
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
/*
// Set the UI culture based on the system language
CultureInfo.DefaultThreadCurrentUICulture = CultureInfo.InstalledUICulture;
if (CultureInfo.InstalledUICulture.Name.StartsWith("ja"))
{
Thread.CurrentThread.CurrentUICulture = new CultureInfo("ja");
}
else
{
Thread.CurrentThread.CurrentUICulture = new CultureInfo("en");
}*/
Application.Run(new MyWhisper());
}
}
}