I'm trying to override
protected override void OnInputLanguageChanging(System.Windows.Forms.InputLanguageChangingEventArgs e)
{
}
In my Main Form class C# app (Tested on .NET Framework 4.7.2 and 4.8)
The expectation is to have it called, when the user tries to change the Windows language. Unfortunatelly it doesn't work, the method is not called, however the method OnInputLanguageChanged works perfectly but it's too late for me. Is there any trick to have OnInputLanguageChanging working? Thanks