ListBox/ListView itemTemplat
-
בליסט-בוק יש מאפיין ItemContainerStyle
אתה יכול להכניס לשם כל דבר ובחלק שמציג את הפריט מהסורס אתה שם ContentPresenter
משהו כזה:<Style x:Key="XXX" TargetType="{x:Type ListBoxItem}"> <Setter Property="Template"> <Setter.Value> <ControlTemplate TargetType="{x:Type ListBoxItem}"> <Expander> <ContentPresenter SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}"/> </Expander> </ControlTemplate> </Setter.Value> </Setter> </Style>
פורסם במקור בפורום CODE613 ב02/04/2014 14:13 (+03:00)