问题
I cannot find any good documentation for the Panel.IstItemsHost attached property. I see plenty of examples of people setting it on the ItemsContainer template for an ItemsControl, but the un-documentation over at MSDN does not explain why or what advantages setting property confers. I have built plenty of containers that do NOT set this property, but have not yet noticed any ill effects.
回答1:
Say I have an ItemsControl. I want to use a custom panel that swoops items in and out as you scroll; its called a SwoopPanel. Now, how do I tell the ItemsControl to use my SwoopPanel to contain the templates it creates?
The quick way is to set the ItemsPanel on the ItemsControl:
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<lol:SwoopPanel />
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
However, sometimes that doesn't work for you. Maybe you wish to customize how the SwoopPanel is presented in the UI, and the only way to get around this is to change the control template of the ItemsControl. Now you can add your SwoopPanel directly to the control template and, using the property, mark it as the ItemsHost that the ItemsControl will put all the templated items it creates.
<Style TargetType="ItemsControl">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="ItemsControl">
<Border CornerRadius="5">
<ScrollViewer VerticalScrollBarVisibility="Hidden">
<lol:SwoopPanel IsItemsHost="True"/>
</ScrollViewer>
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
Do you have to do it one way or the other? No. Is one more advantageous than the other? Well, the second way allows you more control of the UI, the first way is easier. Take your pick, really. I've never personally done it the second way, but I think there might be a couple of places where it might be useful.
回答2:
See http://msdn.microsoft.com/en-us/library/system.windows.controls.panel.isitemshost(v=vs.90).aspx
Essentially, what this post says is that if you are replacing the ControlTemplate of a ListBox and want a new layout, set IsItemsHost=true on some panel, e.g. a StackPanel. Then any items in the ListBox will be automatically added as children of the StackPanel. If the orientation of the ListBox is Horizontal, then the ListBox will be horizontal.
The other way is to set the ItemsPanel property of the ListBox to an ItemsTemplate and in that template you have a StackPanel. In this case the ListBox items will be added to the StackPanel children just as in the first case. However, you do not need to set IsItemsHost = true, it will have absolutely no effect. This is done for you by the fact that you are setting the ItemsPanel property.
回答3:
More Explanation, Please!
While all of the above answers are technically correct, I feel they don't illustrate how IsItemsPanel
correlates to the ControlTemplate
and the presence (or absence) of an ItemsPresenter
and the corresponding ItemsPanel
property which it uses. This answer will attempt to shed light on those things and hopefully clarify when you should, or shouldn't use each.
ItemsControls, Panels and IsItemsHost, Oh my!
An ItemsControl
is simply a control that displays a collection of items. It does this by first generating an ItemContainer
for each of those items, then it inserts those containers into (or removes them from) a specific 'host' panel, and finally, that panel lays the containers out for display.
The specific panel used for hosting the containers is the first panel found in the ItemControl
's hierarchy that has its IsItemsHost
property set to 'True'. There are two ways to specify which panel that is:
- By inserting an
ItemsPresenter
into theControlTemplate
, then setting theItemsPanel
property, or... - By inserting a
Panel
directly into theControlTemplate
and setting itsIsItemsHost
to 'True' explicitly.
But which do you use and why? Read on to find out!
ItemsPresenter - "Have It Your Way!"
In a typical ControlTemplate
for an ItemsControl
such as a ListBox
, the template specifies an ItemsPresenter
somewhere inside of it. Here's a simplified excerpt showing how it's used:
<Border x:Name="Bd"
BorderBrush="{TemplateBinding BorderBrush}"
BorderThickness="{TemplateBinding BorderThickness}"
Background="{TemplateBinding Background}"
Padding="1" SnapsToDevicePixels="true">
<ScrollViewer Focusable="false" Padding="{TemplateBinding Padding}">
<ItemsPresenter SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}"/>
</ScrollViewer>
</Border>
As you can see, there is an ItemsPresenter
specified inside of a ScrollViewer
in the middle of the template. What you don't see however is an actual panel to lay out the items.
So if there's no panel defined in the template, where does it come from? That's where the ItemsPanel
property comes in. As its name suggests, this property defines which panel will be used to host and lay out the items. It doesn't however say where that panel appears in the ControlTemplate
.
That brings us back to the ItemsPresenter
. In short, it's a placeholder that essentially says "When the ItemsPanel
property is set, I'll insert that panel here and set its IsItemsHost
to 'True' automatically."
The advantage of using an
ItemsPresenter
in the template for yourItemsControl
is that you're making it very easy for consumers of your control to replace the panel without having to completely re-template your entire control.
IsItemsHost - "My Way or the Highway!"
However, what if you don't want someone to be able to change out your panel because your control depends on some custom panel implementation and anything else will break the functionality? In that case, you don't use an ItemsPresenter
in your template. You instead need to specify the exact panel you want to use.
This is where IsItemsHost
property comes into play. When set on a panel in the ControlTemplate
, it tells that ItemsControl
to use that specific panel to host the generated containers, regardless of what ItemsPanel
is set to.
Here's the same example as above, but rather than an ItemsPresenter
, it hard-codes a SpecializedPanel
to lay out the items. We indicate that's the panel we want to use to host the items by setting its IsItemsHost
property to 'True'.
<Border x:Name="Bd"
BorderBrush="{TemplateBinding BorderBrush}"
BorderThickness="{TemplateBinding BorderThickness}"
Background="{TemplateBinding Background}"
Padding="1" SnapsToDevicePixels="true">
<ScrollViewer Focusable="false" Padding="{TemplateBinding Padding}">
<SpecializedPanel IsItemsHost="True" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}"/>
</ScrollViewer>
</Border>
In this case, because the template doesn't use an ItemsPresenter
and instead directly includes a panel with its IsItemsHost
set to 'True', there is no way for the user to change out that panel short of completely replacing the entire ControlTemplate
. Setting the ItemsPanel
property will essentially be ignored.
Bringing it all home...
To recap, if you're a control author and want to give consumers of your control the ability to swap out the panel used to lay out your items, define your template for your ItemsControl
using an ItemsPresenter
. Make sure to also set the ItemsPanel
property in the template to specify a default panel.
If however, want to 'lock' which panel your control uses, then do not use an ItemsPresenter
in the ControlTemplate
. Instead, specify the specific panel you want to use directly in the template, then set its IsItemsHost
property to 'True'.
Note: There's technically a third scenario, which is arguably more common: You're not a control author creating something to be consumed by other users, but rather are simply re-templating an
ItemsControl
(like say aListBox
) for some specialized use in your own application.In that case, since you are the ultimate consumer of the control, you most likely won't have to worry about other consumers downstream needing to change out the panel, so it's completely fine to simply specify the panel directly in your template (again, setting its
IsItemsHost
true) and not worry about using anItemsPresenter
and its associatedItemsPanel
property as the latter, while valid, would just add unnecessary complexity without any actual benefit.
Hope this clarifies exactly what's going on.
来源:https://stackoverflow.com/questions/2859656/what-exactly-does-panel-isitemshost-do