我有一个Maui应用程序,并希望根据我所在的平台设置应用程序的样式。
<ResourceDictionary
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml">
<OnPlatform x:Key="ButtonSize" x:TypeArguments="x:Double">
<On Platform="iOS" Value="14" />
<On Platform="Android" Value="16" />
</OnPlatform>
</ResourceDictionary>
Windows和Mac的“平台字符串”是什么?
<On Platform="???" Value="16" />
1条答案
按热度按时间vq8itlhq1#
根据文件