1

I have the following issue. i'm using Items control and I dont understand why my result is on several lines instead of being on a single line. This is my code :

<StackPanel Orientation="Horizontal" Margin="10,10,10,10">
    <ItemsControl ItemsSource="{Binding Countries}" >
        <ItemsControl.ItemTemplate>
            <DataTemplate x:Name="TabCountries" >
                <StackPanel Orientation="Horizontal">
                    <TextBlock Name="Country" Text="{Binding nom}" Style="{StaticResource whiteFontColor}" VerticalAlignment="Center" Margin="0,0,5,0"/>
                    <CheckBox Margin="0,0,5,0" Name="isCountryAllowed" IsChecked="{Binding isAllowed}" />
                </StackPanel>
            </DataTemplate>
        </ItemsControl.ItemTemplate>
    </ItemsControl>
</StackPanel>

The result is like that :

FR
BE
AN

instead of being like that:

FR BE AN ...

Any ideas ?

4

1 に答える 1

6

アイテムのレイアウトは変更せずItemsControl、全体のレイアウトのみを変更しました(同じ要素に他の要素がない場合はほとんど何もしませんStackPanel)。

ItemsControl.ItemsPanelアイテムを水平にレイアウトするために使用します。

<ItemsControl.ItemsPanel>
    <ItemsPanelTemplate>
        <StackPanel Orientation="Horizontal"/>
    </ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
于 2012-08-28T16:22:46.907 に答える