什么是Xaml(.Net Maui)中的OnPlatform字符串

gorkyyrv  于 2022-12-07  发布在  .NET
关注(0)|答案(1)|浏览(166)

我有一个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" />
vq8itlhq

vq8itlhq1#

根据文件

  • 安卓系统
  • iOS操作系统
  • 麦克催化剂
  • 蒂曾
  • WinUI界面

相关问题