[LOC] KeysConverter returns "None" for Windows.Forms.Keys::None in all languages
See original GitHub issueWhich files are affected?
Previously reported at https://github.com/File-New-Project/EarTrumpet/issues/548. Related area https://github.com/dotnet/winforms/issues/8440.
Steps to reproduce:
- Log into a non-English machine
- Run the following PowerShell snippet:
[Reflection.Assembly]::LoadFile("C:\Program Files\dotnet\shared\Microsoft.WindowsDesktop.App\6.0.10\System.Windows.Forms.dll") | Out-Null
$Converter = New-Object Windows.Forms.KeysConverter
$Converter.ConvertToString($Null, [System.Globalization.CultureInfo]::CurrentUICulture, [Windows.Forms.Keys]::None)
- Observe
None
output
Which languages are affected?
All non-English
Issue Analytics
- State:
- Created 8 months ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
KeysConverter Class (System.Windows.Forms)
Returns whether this converter can convert the object to the specified type. (Inherited from TypeConverter). Compare(Object, Object). Compares two key values ...
Read more >Form.cs - Reference Source - Microsoft
FromHandleInternal(hwnd); if (c != null && c is Form) { return(Form)c; } ... Gets the currently active multiple document interface (MDI) child window....
Read more >KeysConverter.ConvertFrom(ITypeDescriptorContext ...
The ConvertFrom method is specialized to convert objects of type String or Enum array. In this case, it will return an object of...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Could you please bring that up in the PR?
addressing in #8401.