2013-07-25 8 views
0

가로 방향으로 정렬 된 목록 상자에서 새 행의 항목을 시작하려면 어떻게해야합니까? 내가 다시 설치하여 해결 충돌 어셈블리에지도 itemspanetemplate에서 wrappanel를 사용, 이것은 지금까지 내 코드이지만, 미리목록 상자 가로 맞춤 줄 바꾸기

<phone:PanoramaItem Header="Geklassifiseerd" Orientation="Horizontal" Foreground="Black"> 
      <ListBox x:Name="geklassifisseerd_list"> 
       <ListBox.ItemTemplate> 
        <DataTemplate> 
         <StackPanel> 
          <TextBlock Text="{Binding Name}" TextWrapping="Wrap" 
              Margin="10,0" 
              Foreground="Black" 
              FontSize="20" 
              /> 
          <TextBlock Text="{Binding Date}" 
              TextWrapping="Wrap" 
              Foreground="Black" 
              Margin="10,-2,10,0" 
              FontSize="20" 
              /> 
          <TextBlock Text="{Binding Image_uri}" 
              TextWrapping="Wrap" 
              Margin="10,-2,10,0" 
              Foreground="Black" 
              /> 
         </StackPanel> 
        </DataTemplate> 
       </ListBox.ItemTemplate> 

       <ItemsControl.ItemsPanel> 
        <ItemsPanelTemplate> 
         <StackPanel Orientation="Horizontal"/> 
        </ItemsPanelTemplate> 
       </ItemsControl.ItemsPanel> 

      </ListBox> 

답변

0

1 행, 고맙습니다의 항목이 대답을 얻었다 알을 보여줍니다 너겟을 통한 Microsoft.phhone.controls 어셈블리

   <ItemsControl.ItemsPanel> 
        <ItemsPanelTemplate> 
         <Controls:WrapPanel Orientation="Horizontal" /> 
        </ItemsPanelTemplate> 
       </ItemsControl.ItemsPanel>