In WPF Listbox, I'm confused with these 2 notions:
ItemTemplate and ItemsPanelTemplate
Can someone explain me more?
Thanks John
|
In WPF Thanks John
| ||||
|
feedback
|
|
ItemTemplate is used to specify a DataTemplate used to render the item in your ListBox. ItemPanelTemplate is used to specify the panel used to arrange the children of your ListBox. For example, if your ListBox is bound to an ObservableCollection you must specify a DataTemplate to tell it how to render each Person object.
That will arrange each item vertically because ListBox used a StackPanel by default. If you want to change this behaviour, used the ItemPanelTemplate property:
You can even change the StackPanel to any other panel (WrapPanel for example). | |||
|
feedback
|
|
Let me try to explain this by example:
And the result:
The
| |||
|
feedback
|