Hello, did anyone know how to show the Placeholder of an (C#-created, not XAML) Entry binded to an Int-Property? See a picture of the problem attached. Cheers!
Has no one an idea?
The int datatype is a value type, so it has no null value. That's why it's showing 0. Try binding to a nullable int.
Answers
Has no one an idea?
The int datatype is a value type, so it has no null value. That's why it's showing 0. Try binding to a nullable int.