所以我有一个ListView
,ListViewItem
有一个边角可以绕过角落:
<ListView>
<ListViewItem x:Name="easy_listViewItem" Height="35" Tag="easy" Margin="0,0,15,0" BorderBrush="White" FontSize="15.333" Content="Easy" Foreground="Black" Background="#FF27AE60" FontWeight="Bold">
<ListViewItem.Template>
<ControlTemplate>
<Border CornerRadius="2" BorderThickness="2" BorderBrush="#FF27AE60">
<ItemsPresenter></ItemsPresenter>
</Border>
</ControlTemplate>
</ListViewItem.Template>
</ListViewItem>
然而,似乎因为Border
我无法再看到Content
的{{1}}有谁知道为什么?