8,756
社区成员




<ItemsControl
Margin="0 130 0 0"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Opacity="0.0"
ItemsSource="{Binding Items}">
<ItemsControl.ItemTemplate>
<DataTemplate>
<Border
Height="30"
Width="200"
Margin="0 2"
BorderBrush="Plum"
BorderThickness="3"
CornerRadius="5">
<TextBlock
VerticalAlignment="Center"
HorizontalAlignment="Left"
Margin="5 0 0 0"
Text="{Binding Name}" />
</Border>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>