Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
2715
MultiBinding Converter
posted

I have a field with use a multibinding converter but the data from the converter never get showned

 

<igDP:Field Name="Hvornår" Label="Hvornår">
<igDP:Field.Settings>
<igDP:FieldSettings EditAsType="{x:Type sys:String}" AllowEdit="False">
<igDP:FieldSettings.CellValuePresenterStyle>
<Style TargetType="{x:Type igDP:CellValuePresenter}">
<Setter Property="Content" >
<Setter.Value>
<MultiBinding Converter="{StaticResource HvornaarTextConverter}">
<Binding Path="DataItem.Mandag" />
<Binding Path="DataItem.Tirsdag" />
<Binding Path="DataItem.Onsdag" />
<Binding Path="DataItem.Torsdag" />
<Binding Path="DataItem.Fredag" />
<Binding Path="DataItem.Lørdag" />
<Binding Path="DataItem.Søndag" />
<Binding Path="DataItem.Periode" />
<Binding Path="DataItem.Hvornår" />
</MultiBinding>
</Setter.Value>
</Setter>
</Style>
</igDP:FieldSettings.CellValuePresenterStyle>
</igDP:FieldSettings>
</igDP:Field.Settings>
</igDP:Field>

Parents Reply Children