How to Prevent Editing Values in WinUI SfNumberBox
To make the SfNumberBox read-only, set its IsEditable property to False. This will make the control behave as a read-only field. A sample code snippet is shown below.
<editors:sfnumberbox x:name="number" width="150" height="40" value="12142523" iseditable="False"/>