.NET MAUI
一种 Microsoft 开源框架,用于构建跨移动设备、平板电脑、台式机的原生设备应用程序。
123 个问题
您好~
像下面图片展示的一样,SwipeItem在我的测试手机上不能居中显示。现在我只能在前面补充三个空格使他们保持居中,我想这样做有可能会导致不同分辨率下的显示问题,有没有更好的解决办法。
测试环境:.net8,android api33,oppo手机
你可以试下
<grid>
<Grid.RowDefinitions>
<RowDefinitionHeight="使用具体的数字"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinitionWidth="使用具体的数字"/>
</Grid.ColumnDefinitions>
<ImageButton WidthRequest="使用具体的数字" HeightRequest="使用具体的数字" />
</grid>
RowDefinitionHeight定义与ColumnDefinitionWidth,加上WidthRequest与HeightRequest配合可以解决
两者单独用也可以解决
都需要你调试