Currently, I have a Xamarin project and I populate a listview using itemsource.
<Label Text="{Binding BBName, Converter={StaticResource valConv}, ConverterParameter='bbnamevssym'}" TextColor="{StaticResource textColorBlack}" VerticalTextAlignment="End" FontAttributes="Bold" FontSize="14"/>
I want to change this… I basically want to populate this label based on some of the other fields in the same row of data. for example, I want to look at 3 columns.
name,
symbol,
id
if id = yes then use name, if not use symbol.
I was trying to use the converter, but I don’t see how to bring in other fields. can someone point me in the right direction?