2017-12-04 15 views
0

간단하지만 나는 목록을 가로로 표시하는 데 많은 시간을 할애했습니다. 나는 심지어 StackPanel 방향을 "수평 적"으로 만들었지 만 모두 헛된 것입니다. 아무도 이것으로 도울 수 있습니까? 나는 정말로 그것을 고맙게 생각할 것이다.ListBox의 TextBlock을 RSS 피드에 HORIZONTALLY로 표시하는 방법 WPF 코드

<Window x:Class="RssFeed_Wpf.MainWindow" 
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
    xmlns:local="clr-namespace:RssFeed_Wpf" 
    mc:Ignorable="d" 
    Title="MainWindow" Height="350" Width="525"> 
<Window.Resources> 
    <XmlDataProvider x:Key="DataRss" XPath="//item" Source="http://www.abc.net.au/news/feed/52278/rss.xmlhttp://www.abc.net.au/news/feed/45910/rss.xml"> 
    </XmlDataProvider> 
</Window.Resources> 
    <ListBox ItemsSource="{Binding Source = {StaticResource DataRss}}" Background="Black" HorizontalContentAlignment="Left" BorderBrush="Transparent"> 
     <ListBox.ItemTemplate> 
      <DataTemplate> 
       <StackPanel Orientation="Horizontal"> 
        <TextBlock Text="{Binding XPath=title}" FontWeight="Bold" Name="txtScrolling" FontFamily="calibri" Foreground="#f4b042" Height="20pt"> 
        </TextBlock> 
       </StackPanel> 
      </DataTemplate> 
     </ListBox.ItemTemplate> 
    </ListBox> 
</Window> 

당신이 목록은 수직으로 표시됩니다, 여기에서 볼 수 있습니다하지만이 수평으로 원하는 : 당신의 StackPanel이 DataTemplate을에 있기 때문에

Screenshot

+1

https://stackoverflow.com/questions/3565553/listbox-items-orientation-to-horizontal –

+0

감사 @RogerLeblanc 필요 :) –

답변

1

ListBox에서 모든 항목에 대해 만든 StackPanel이 . 대한 컨테이너를 변경하려면 ListBox 당신은 세트 그것을 ItemsPanel

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