6 references to GetThreadLocale
System.Windows.Forms (6)
winforms\Managed\System\WinForms\Application.cs (3)
3105if (culture == null || culture.LCID != SafeNativeMethods.GetThreadLocale()) 3106culture = new CultureInfo(SafeNativeMethods.GetThreadLocale()); 3750if (culture != null && culture.LCID != SafeNativeMethods.GetThreadLocale()) {
winforms\Managed\System\WinForms\StringSorter.cs (3)
119this.lcid = culture == null? SafeNativeMethods.GetThreadLocale(): culture.LCID; 141return Compare(SafeNativeMethods.GetThreadLocale(), s1, s2, 0); 150return Compare(SafeNativeMethods.GetThreadLocale(), s1, s2, options);