我想绕过ListView的角落。我尝试使用Template
属性,但似乎必须重写整个模板。有什么办法可以到达边界,以便我可以设置CornerRadius
最佳答案
忽略BorderThickness和CornerRadius值,您可以根据需要进行设置。
<ListView>
<ListView.Template>
<ControlTemplate>
<Border CornerRadius="50" BorderThickness="50" BorderBrush="Red">
<ItemsPresenter></ItemsPresenter>
</Border>
</ControlTemplate>
</ListView.Template>
<ListViewItem Content="Harish"/>
<ListViewItem Content="Harish"/>
<ListViewItem Content="Harish"/>
<ListViewItem Content="Harish"/>
</ListView>
我希望这个能帮上忙
关于c# - 具有圆角的ListView,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11436545/