Login
Резюме для программиста
89957 просмотров
Перейти к просмотру всей ветки
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;