русский
Germany.ruForen → Архив Досок→ Programmierung

Резюме для программиста

01.04.22 12:23
Re: Резюме для программиста
 
alex445 коренной житель
in Antwort alex445 01.04.22 12:08, Zuletzt geändert 01.04.22 21:54 (alex445)

Я такую штуку вписываю


// The inability to enter sometimes the floating point in 
text boxes comes from the Microsoft's changes in.NET Framework after 
version 4.0.
// The solution is to change the 
KeepTextBoxDisplaySynchronizedWithTextProperty property to false as 
early as possible in the application - better in App class constructor.
// https://www.mobilemotion.eu/?p=1855
// 
https://docs.microsoft.com/en-us/dotnet/api/system.windows.frameworkcompatibilitypreferences.keeptextbox
//displaysynchronizedwithtextproperty?redirectedfrom=MSDN&view=windowsdesktop-6.0&viewFallbackFrom=net-5.0#remarks
System.Windows.FrameworkCompatibilityPreferences.KeepTextBoxDisplaySynchronizedWithTextProperty 
= false;
 

Sprung zu