Quantcast
Channel: C#タグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 9738

英語リソース表示

$
0
0

日本語OSで、画面の英語リソースを確認したいときに、知っていると便利。
英語OSを用意することなく、画面の英語リソースを確認できる。

CurrentUICulture

リソースに適用されるカルチャー。
カルチャーを変更することで、UIに表示されるテキストやメッセージ文字列を変更することができる。
csharp
Thread.CurrentThread.CurrentUICulture = CultureInfo.GetCultureInfo("en-US");

CurrentCulture

書式などに適用されるカルチャー。
カルチャーを変更することで、数値や日時の書式などを変更することができる。
csharp
Thread.CurrentThread.CurrentCulture = CultureInfo.GetCultureInfo("en-US");

日本語

Thread.CurrentThread.CurrentUICulture=CultureInfo.GetCultureInfo("ja-JP");Thread.CurrentThread.CurrentCulture=CultureInfo.GetCultureInfo("ja-JP");

ja.PNG

英語

Thread.CurrentThread.CurrentUICulture=CultureInfo.GetCultureInfo("en-US");Thread.CurrentThread.CurrentCulture=CultureInfo.GetCultureInfo("en-US");

en.PNG


Viewing all articles
Browse latest Browse all 9738

Trending Articles