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"/>
          <TextBlock Text="{Binding shuxing}" Margin="5,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>

相关文章

如何在Silverlight4(XAML)中绑定IsEnabled属性?我试过简单的...
我正在编写我的第一个vb.net应用程序(但我也会在这里标记c#,...
ProcessFile()是在UIThread上运行还是在单独的线程上运行.如...
我从同行那里听说,对sharepoint的了解对职业生涯有益.我们不...
我正在尝试保存一个类我的类对象的集合.我收到一个错误说明:...
我需要根据Silverlight中的某些配置值设置给定控件的Style.我...