Basically I need to do some calculations when the Maximum or Minimum properties change, but there’s no event in the Slider control that allows me to look at it when this happens.
Any ideas?
Thanks!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You should know when you change those values – just move the notification job to the class which sets the Maximum and the Minimum (directly or indirectly via a binding).
When using a ViewModel, this would be a much cleaner way (letting the ViewModels do this job) – you could then use a Mediator like that one.