我在我的应用程序的某个页面上工作,我只是发现Frame.IsClippedToBounds
属性没有剪裁它的内容。这是我的 XAML 中的一段代码:
<Frame Padding="0" HeightRequest="100" WidthRequest="100" HasShadow="False" BackgroundColor="White"
CornerRadius="50" BorderColor="Teal" HorizontalOptions="Center" VerticalOptions="Center"
IsClippedToBounds="True">
<Frame.Content>
<StackLayout BackgroundColor="Silver" VerticalOptions="FillAndExpand" HorizontalOptions="FillAndExpand"/>
</Frame.Content>
</Frame>
正如您在下面的附件中所见,它在 iOS 中完美运行,但在 Android 中却不行。
iOS
安卓