WorkflowItemsPresenter::ItemsPanelProperty Field
.NET Framework (current version)
Identifies the ItemsPanel dependency property.
Assembly: System.Activities.Presentation (in System.Activities.Presentation.dll)
Field Value
Type: System.Windows::DependencyProperty^By providing a custom panel template, you can customize and control the layout of the contained items. The default ItemsPanel is based on a vertically oriented StackPanel. As an illustration, the ItemsPanel for the designer of Parallel activities is based on a horizontally oriented StackPanel.
The following example in XAML shows the ItemsPanel for the designer of Parallel activities that is based on a horizontally oriented StackPanel.
<sad:WorkflowItemsPresenter.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center" x:Name="ItemsPanel"/>
</ItemsPanelTemplate>
</sad:WorkflowItemsPresenter.ItemsPanel>
.NET Framework
Available since 4.0
Available since 4.0
Show: