向ListViewItem添加边框会隐藏内容

时间:2015-11-12 10:14:11

标签: c# xaml listview

所以我有一个ListViewListViewItem有一个边角可以绕过角落:

<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}}有谁知道为什么?

0 个答案:

没有答案