I have a problem where we need to set style on WPF Xceed grid cell, where we binding grid thru custom data source say DataModelA. Now datamodal have 10 properties. Where we want to set style on column 5 based on value of column 3.
Say
column 3 has value < 10 column 5 of similar row should be in bold
column 3 has value > 10 column 5 of similar row should be in Italic
column 3 has value = 10 column 5 of similar need to show animation
Now I tried fist using DataTrigger but DataTrigger not supports condition like >,<,= and we also not able set other cells value.
I tried to found Item bound event, but could not locate one.
I tried to think with some rule set where rule get fired, we associate a event with it and can check\process that row.
I tried with some event triggered, but that is not succeded.
I prefer to do coding approach instead of XAML, as it gives more control over logic.
Any one have idea about this?