gpt4 book ai didi

xaml - 新的 OnPlatform/OnIdiom XAML 扩展 - 边距厚度的用法

转载 作者:行者123 更新时间:2023-12-04 16:50:34 31 4
gpt4 key购买 nike

在 Xamarin.Forms 3.2.0 中,Xamarin Forms 引入了新的 OnPlatform/OnIdiom XAML 扩展

根据 blog我们可以重写下面的代码,

<Button Text="Extensions" BackgroundColor="Black" TextColor="White">
<Button.HeightRequest>
<OnPlatform x:TypeArguments="x:Double" Default="40">
<On Platform="iOS" Value="60"/>
<On Platform="Android" Value="80"/>
</OnPlatform>
</Button.HeightRequest>

使用新扩展名。
<Button Text="Extensions" BackgroundColor="Black" TextColor="White" 
HeightRequest="{OnPlatform iOS=60, Android=80, Default=40}"/>

这里我的疑问是如何重用相同的 OnIdiom XAML 扩展 边距/厚度。

最佳答案

你应该可以这样做:<Button Margin="{OnPlatform Android='10,5,10,0', iOS='10,20,10,0'}" />
取决于您更喜欢哪种语法!

关于xaml - 新的 OnPlatform/OnIdiom XAML 扩展 - 边距厚度的用法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52914138/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com