I have a requirement of disabling a perticular cell in a row, depending on values in other cells of the same row.
WPF or WPF MVVM scenarios, both solutions are welcome.
I tried both and none works!!!
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.
Thanks @Grenter.
I did solve it by implementing Converter class and implementing it as a static resource in my xaml file.
Also, I figured out that we can do the same using the cell updating or cell updated event and writing some lines of code in the xaml code behind, which I generally donot prefer.
But converters is certainly the way to go forward.
Thanks a lot!!!