这几天需要做一个循环弹出式的链接功能。想到用到了WarpPanel这个控件进行绑定数据。有些方便文本的链接。下面是一段前台和后台的代码。
如果错误的地方请多多指教。谢谢!
前端:
- <Border Margin="10" BorderBrush="Black" BorderThickness="1" Grid.Row="2">
- <ItemsControl Loaded="myListBox_Loaded" x:Name="myListBox">
- <ItemsControl.ItemsPanel>
- <ItemsPanelTemplate>
- <toolkit:WrapPanel Orientation="Horizontal" />
- </ItemsPanelTemplate>
- </ItemsControl.ItemsPanel>
- <ItemsControl.ItemTemplate>
- <DataTemplate>
- <Border BorderBrush="Blue" CornerRadius="2" BorderThickness="1">
- <HyperlinkButton Margin="3" Click="HyperlinkButton_Click">
- <TextBlock Text="{Binding JCode}"/>
- </HyperlinkButton>
- </Border>
- </DataTemplate>
- </ItemsControl.ItemTemplate>
- </ItemsControl>
- </Border>
后端绑定:
- myListBox.ItemsSource = trcs;
注释:trcs 是一个list的集合。这样才可以绑定到控件上使用。这是最简单的使用