Xamarin.Forms显示的图标较小,适合放在按钮中

问题描述 投票:0回答:1

我在参考资料中整理了我的图标/图像。对于以所有格式添加到drawable的android,对于IOS也在资源@,2 @,3 @中。但是,当我添加按钮图像和其他较小的组件图像时,会占据所有空间。如何组织?

xamarin.forms xamarin.android xamarin.ios
1个回答
0
投票

您是否尝试在Aspect中设置ImageButton

如果使用以下代码进行设置。

    <ImageButton  Source="Image.png" Aspect="Fill" />

我得到了以下屏幕截图。拉伸图像以完全准确地填充ImageButton

enter image description here

如果未设置,则会得到以下屏幕截图。

enter image description here

如果您想了解有关Aspect属性的更多详细信息,请参见以下链接。

https://docs.microsoft.com/en-us/xamarin/xamarin-forms/user-interface/imagebutton#imagebutton-appearance

© www.soinside.com 2019 - 2024. All rights reserved.