こんにちは、私は WPF アプリケーションに取り組んでおり、パネルの U 字型パスにアイテムを配置する必要があります
したがって、次のコードを使用していますが、スタックパネルを使用したため、アイテムをキューに配置します。事前定義されたパスに配置する必要がある要素をデータソースに追加し続けるため、事前定義されたパスにアイテムを配置する方法はありますか。
<ItemsControl Name="icTodoList" Grid.Row="2" ItemsSource="{Binding DocumentsItemsSource}" Width="100" Height="460" >
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Orientation="Vertical"/>
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
<ItemsControl.ItemTemplate>
<DataTemplate>
<Button Margin="0" HorizontalAlignment="Center" DataContext="{Binding}" Content="{Binding Path=ItemName}" Height="35" Width="35" />
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>