Hi,
i am using 4 properties in header and 7 proeprties in content the bindable properties in same class. In heaeder the propertieses binding is working so in content no working.
Model Class:
public string type { get; set; }
public string vblnr { get; set; }
public string lifnr { get; set; }
public string kunnr { get; set; }
public string hkont { get; set; }
public string name1 { get; set; }
public string payment { get; set; }
public string waers { get; set; }
public string aciklama { get; set; }
xmal
<Label Grid.Row="1"
FontFamily="{StaticResource Montserrat-Medium}"
FontSize="12"
HorizontalOptions="Start"
HorizontalTextAlignment="Center"
LineHeight="1.25"
Text="{Binding aciklama}"
TextColor="{DynamicResource Gray-700}"
VerticalTextAlignment="Center" />
<Label Grid.Row="1"
Grid.Column="1"
FontFamily="{StaticResource Montserrat-SemiBold}"
FontSize="14"
HorizontalOptions="EndAndExpand"
LineHeight="1.25"
Text="{Binding payment}"
TextColor="{DynamicResource Gray-800}" />
</Grid>
</expander:SfExpander.Header>
<expander:SfExpander.Content>
<StackLayout BackgroundColor="{StaticResource Gray-White}">
<BoxView HeightRequest="1" Color="{DynamicResource Gray-200}"/>
<custom:RequestItem ItemKey="Ödeme Tipi" ItemValue="{Binding type}" Grid.Row="0" Grid.Column="0"/>
<custom:RequestItem ItemKey="Ödeme BelNo" ItemValue="{Binding vblnr}" Grid.Row="0" Grid.Column="1"/>
<custom:RequestItem ItemKey="Satıcı No" ItemValue="{Binding lifnr}" Grid.Row="1" Grid.Column="0"/>
<custom:RequestItem ItemKey="Müşteri No" ItemValue="{Binding kunnr}" Grid.Row="1" Grid.Column="1"/>
<custom:RequestItem ItemKey="Mali Yıl" ItemValue="{Binding gjahr}" Grid.Row="2" Grid.Column="0"/>
<custom:RequestItem ItemKey="Banka Hesabı" ItemValue="{Binding hkont}" Grid.Row="2" Grid.Column="1"/>
<custom:RequestItem ItemKey="Açıklama" ItemValue="{Binding aciklama}" Grid.Row="3" Grid.Column="0" Grid.ColumnSpan="2"/>
The Screenshot of result in attach file
Attachment:
Screenshot_1589342131_ddde5bc.rar