Hello,
I am looking to achieve something like this
<igDP:XamDataGrid.FieldLayoutSettings>
basically, for each row we have our setting to display like BG/FG colors, Font style etc. so instead of writing three/four converters which get applied for one row I was thinking if we could achieve something like above where we assign styles based on data in the row.
Please help.
It seems to compile and everything, it just doesn't the break point in the converter.
public object Convert(object value, Type targetType,object parameter, CultureInfo culture){
if (value == null) return Binding.DoNothing;
TransactionViewModel model = value as TransactionViewModel;
if (model==null)return Binding.DoNothing;
Style style = new Style();
style.Setters.Add(
new Setter(DataRecordCellArea.BackgroundProperty, Brushes
.Red ));
return style;
}
Hello Vish,
I am just checking if you got this worked out or you still require any assistance or clarification on the matter.
I am just checking the progress of this issue and was wondering if you managed to achieve your goal or if you need any further assistance on the matter.
I suggest you add UnboundFields once you have you Fieldlayout initialized and bound them to the Properties of your underlying data. Here it is explained in details about the UnboundFields:
http://help.infragistics.com/NetAdvantage/WPF/2011.2/CLR4.0/?page=InfragisticsWPF4.DataPresenter.v11.2~Infragistics.Windows.DataPresenter.UnboundField.html
Hope this helps you.