フォーム全体を埋めるテンプレートを使用して、WPF で ListBox を作成する必要があります。しかし、フォームの中央 (ListBox 内) に、別の ListBox を水平に表示する必要があります。
質問する
42 次
1 に答える
0
このようなものはうまくいくはずです
<Window.Resources>
<DataTemplate x:Name="anotherItemTemplate">
<StackPanel Orientation="Horizontal">
<TextBlock Text="{Binding anotherLabel}"></TextBlock>
</StackPanel>
</DataTemplate>
<DataTemplate x:Key="itemTemplate">
<StackPanel>
<TextBlock Text="{Binding xpto}"/>
<ListBox ItemTemplate="{StaticResource anotherItemTemplate}"></ListBox>
</StackPanel>
</DataTemplate>
</Window.Resources>
<Grid>
<ListBox ItemTemplate="{StaticResource itemTemplate}"></ListBox>
</Grid>
于 2013-05-27T16:25:22.120 に答える