<ItemsControl ItemsSource="{Binding OtherInfoCollection}">
            <ItemsControl.ItemsPanel>
                <ItemsPanelTemplate>
                    <WrapPanel Orientation="Horizontal"/>
                </ItemsPanelTemplate>
            </ItemsControl.ItemsPanel>
            <ItemsControl.ItemTemplate>
                <DataTemplate>
                    <StackPanel Orientation="Horizontal" Margin="10,10,0,0">
                        <Label Content="{Binding InfoType,Mode=OneWay}" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="10,0,0,0"/>
                        <TextBox TextWrapping="Wrap" Margin="0" Text="{Binding InfoValue, Mode=OneWay}" VerticalAlignment="Center" Width="102" Height="25.837" HorizontalAlignment="Left" d:LayoutOverrides="HorizontalAlignment"/>
                    </StackPanel>
                </DataTemplate>
            </ItemsControl.ItemTemplate>
        </ItemsControl>

posted on 2012-11-28 17:26  swarb  阅读(112)  评论(0编辑  收藏  举报