This question is locked. New answers and comments are not allowed.
Hi,
I have datagrid with two editable textbox. I want to validate the decimal data for a range in the setter. Basically If the value entered by user is higher than MAX i will not set the value in the setter instead i throw an exception which is working good. But if the user enters a value less than MIN then i want to show WARNING on the textbox.
What i trying to do is, if the value is greater than MAX i throw exception in the setter, but if the value is less I set the value in the setter and tries to throw the exception which is not working.\
Please advice.