.net MAUI中label设置圆角
时间: 2024-02-26 19:58:15 浏览: 296
C#.NET MAUI XZing 用相机扫码
在 .NET MAUI 中,可以通过修改 Label 的 CornerRadius 属性来设置圆角。以下是一个示例:
```xml
<Label Text="Hello World!"
CornerRadius="10"
BackgroundColor="LightGray"
TextColor="Black"
Padding="10"/>
```
在上面的示例中,Label 的 CornerRadius 属性设置为 10,这意味着 Label 将具有 10 个像素的圆角。同时,也可以设置 Label 的其他属性,如 BackgroundColor、TextColor 和 Padding。
阅读全文