I have a text box and I have bonded the text property to double value in my view model class. I have also create the regular expression for text box so that only numeric values would be entered.
I am calculating the value in my view model class. If value is less then or equal to 0.00001 then it shows the exponential format like (1.E-5) in text box.
I want to display the double value like 0.00001 in text box, not in exponential format. I also don't want to use string format i.e, D, F2, F5. because it restrict the number of floating point. How can I resolve it?