Xamarin.forms 如何减小SwipeItem图标图像大小

Xamarin.forms 如何减小SwipeItem图标图像大小,xamarin.forms,swipe,image-size,Xamarin.forms,Swipe,Image Size,如何减小SwipeItem的图标大小。我在列表视图中有一个滑动视图,用于滑动删除。我想更改删除图标的大小 <ViewCell> <SwipeView> <SwipeView.RightItems> <SwipeItem

如何减小SwipeItem的图标大小。我在列表视图中有一个滑动视图,用于滑动删除。我想更改删除图标的大小

             <ViewCell>
                        <SwipeView>
                            <SwipeView.RightItems>
                                <SwipeItem
                        Text="Delete" CommandParameter="{Binding .}"
                        IconImageSource="delete.png"
                        BackgroundColor="Red"
                        Invoked="SwipeItem_Invoked_1" />
                            </SwipeView.RightItems>


                            <StackLayout HorizontalOptions="Fill" HeightRequest="100">
                                <Label Text="{Binding StID}"
                                           FontAttributes="Bold" TextColor="Black" FontSize="Medium"/>
                                <Label Text="{Binding stName}" TextColor="Black" FontSize="Medium"/>
                                <Label Text="{Binding mark}" HorizontalOptions="EndAndExpand"/>
                            </StackLayout>


                        </SwipeView>

                    </ViewCell>

您是否尝试使用不同大小(16px、24px、32px、64px等)的图标进行替换?