Given a Windows Form with manual set Current(UI)Culture "EN-GB". When I open another form out of this by
using( FormB form = new FormB() )
{
form.ShowDialog( this );
}
the FormB has set the Current(UI)Culture of the operating system.
Is this the default behavior (before .NET 4.5) and I have to set the culture of every form manually? (I know .NET 4.5 has DefaultThread(UI)Culture)
Thank you in advance.