WorkflowItemsPresenter.ItemsPanelProperty Champ
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Identifie la propriété de dépendance ItemsPanel.
public: static initonly System::Windows::DependencyProperty ^ ItemsPanelProperty;
public static readonly System.Windows.DependencyProperty ItemsPanelProperty;
staticval mutable ItemsPanelProperty : System.Windows.DependencyProperty
Public Shared ReadOnly ItemsPanelProperty As DependencyProperty
Valeur de champ
Exemples
L’exemple suivant en XAML montre le ItemsPanel
pour le concepteur d’activités Parallel basé sur un orienté StackPanel
horizontalement.
<sad:WorkflowItemsPresenter.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center" x:Name="ItemsPanel"/>
</ItemsPanelTemplate>
</sad:WorkflowItemsPresenter.ItemsPanel>
Remarques
En fournissant un modèle de panneau personnalisé, vous pouvez personnaliser et contrôler la mise en page des éléments contenus. La valeur par défaut ItemsPanel est basée sur un orienté StackPanel
verticalement. À titre d’illustration, le ItemsPanel
pour le concepteur d’activités Parallel est basé sur un orienté StackPanel
horizontalement.