8,757
社区成员
发帖
与我相关
我的任务
分享
<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>
不知楼主的重写xaml是如何重写的,惭愧地来拿分