listviewitemsを水平に配置する必要がありますが、方法が見つかりません。これまでのところ、これを試しました。
<ListView Grid.Row="0" ItemsSource="{Binding Path=Cells, UpdateSourceTrigger=PropertyChanged}"
ItemTemplate="{StaticResource CellGroupTemplate}"
Background="{StaticResource EnvLayout}"
HorizontalContentAlignment="Stretch">
<ListView.ItemContainerStyle>
<Style TargetType="{x:Type ListViewItem}">
<Style.Resources>
<SolidColorBrush x:Key="{x:Static SystemColors.HighlightTextBrushKey}" Color="Black"/>
<SolidColorBrush x:Key="{x:Static SystemColors.HighlightBrushKey}" Color="Transparent"/>
</Style.Resources>
</Style>
</ListView.ItemContainerStyle>
</ListView>
私のアイテムは他のUIコントロールであり、ビューモデルが添付されています
<DataTemplate DataType="{x:Type vm:CellItemViewModel}" x:Key="CellGroupTemplate">
<vw:CellItemView/>
</DataTemplate>
誰かが各要素(データテンプレート)を他の要素の隣に配置する方法を教えてもらえますか
ありがとうございました