How can i get a XamNumericEditor to ONLY accept positive floating point values?
Hello,
You can either set a mask to the XamNumericEditor that accepts only positive value or handle the EditModeEnding event and cancel it (e.Cancel = true) if the current value does not satisfy your condition.