Hello,
im customizing my item template like this
XAML<dx:ListBoxEdit.ItemTemplate>
<DataTemplate>
<dxlc:LayoutGroup Orientation="Horizontal">
<dxlc:LayoutItem Label="{x:Static p:KundenResources.supplierGroup}">
<TextBlock Text="{Binding Lieferantengruppe}"/>
</dxlc:LayoutItem>
<dxlc:LayoutItem Label="bis">
<dx:DateEdit EditValue="{Binding bis}"/>
</dxlc:LayoutItem>
<dxlc:LayoutItem Label="eyo">
<dx:DateEdit EditValue="{Binding von}"/>
</dxlc:LayoutItem>
</dxlc:LayoutGroup>
</DataTemplate>
</dx:ListBoxEdit.ItemTemplate>
It does not stretch to the screen width as i would want.
I actually already snooped it and found that, if i set the contentpresenter to stretch, i get the desired result (see Attachment)
But i have no idea how i would go about incorporating that into my xaml.
Additionally i just noticed that if an item is selected and i go from an empty dateedit to picking a date, the item is suddenly unselected.