Silverlight ListBox

1、自定義ListBoxItem

<Grid x:Name="LayoutRoot" Background="Transparent">
     <ScrollViewer VerticalScrollBarVisibility="Auto" HorizontalScrollBarVisibility="Auto">
      <Border Style="{StaticResource CommonBorder}">          
      <ListBox x:Name="MyListBoxToShowProperty" Margin="10">
       <ListBox.ItemTemplate >
        <DataTemplate>
         <StackPanel Orientation="Horizontal">
          <TextBlock Text="{Binding zhiduan}" Margin="5,2,0,0"/>
          <TextBlock Text="{Binding shuxing}" Margin="5,2,0,0" Foreground="OrangeRed"/>  
      </StackPanel>        
     </DataTemplate>  
    </ListBox.ItemTemplate>  
   </ListBox>
  </Border>
  </ScrollViewer>    
    </Grid>

2、自定義ListBox整體顯示樣式,以下可使其所有Item水平顯示

        <ListBox>
            <ListBox.ItemsPanel>
                <ItemsPanelTemplate >
                    <StackPanel Orientation="Horizontal"/>
                </ItemsPanelTemplate>
            </ListBox.ItemsPanel>           
            <ListBoxItem Content="選項1" Width="50" />
            <ListBoxItem Content="選項2" Width="50" />
            <ListBoxItem Content="選項3" Width="50" />
            <ListBoxItem Content="選項4" Width="50" />
        </ListBox>

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章