Xamarin在Xaml中形成OnPlatform

时间:2015-02-13 17:33:56

标签: xaml xamarin.forms

我有以下C#代码:

var footer = new StackLayout()
            { BackgroundColor = Device.OnPlatform(Color.FromRgb(225, 240, 251), Color.FromRgb(225, 240, 251), Color.Black),
            };

如何将其转换为Xamarin Xaml,更重要的是TransRgb的设备平台细节?

到目前为止,我有以下XAML ......再次,这是FromRgb让我感到难过。

<StackLayout.BackgroundColor>
    <Color>
        <OnPlatform x:TypeArguments="Color"></OnPlatform>
    </Color>
</StackLayout.BackgroundColor>

2015年2月14日更新

我刚刚尝试了下面的答案,我有以下内容,但它没有更新iOS或Windows Phone的背景颜色。如果我将背景颜色添加到根StackLayout元素,它可以工作......:

<StackLayout HorizontalOptions="FillAndExpand">
    <StackLayout.BackgroundColor>
      <Color>
        <OnPlatform x:TypeArguments="Color">
          <OnPlatform.WinPhone>#51C0D4</OnPlatform.WinPhone>
          <OnPlatform.iOS>#51C0D4</OnPlatform.iOS>
        </OnPlatform>
      </Color>
    </StackLayout.BackgroundColor>
    <Label Text=""></Label>
    <StackLayout Orientation="Horizontal"  VerticalOptions="EndAndExpand" HorizontalOptions="FillAndExpand">
      <StackLayout Orientation="Horizontal" HorizontalOptions="CenterAndExpand">
      <Button Text="Login"></Button>
      <Button Text="Sign Up"></Button>
      </StackLayout>
    </StackLayout>
  </StackLayout>

3 个答案:

答案 0 :(得分:3)

你几乎就在那里。默认转换器负责转换颜色来自命名颜色(例如白色,红色等)或十六进制颜色(例如:#FF0000)。

<StackLayout.BackgroundColor>
    <OnPlatform x:TypeArguments="Color">
        <OnPlatform.iOS>#FF0000</OnPlatform.iOS>
        <OnPlatform.Android>#00FF00</OnPlatform.Android>
    </OnPlatform>
</StackLayout.BackgroundColor>

答案 1 :(得分:1)

OnPlatform的较新版本语法略有不同

在Xaml中:

 <ResourceDictionary>
            <OnPlatform x:Key="SwitchOnColor"  x:TypeArguments="Color" >
                <On Platform="iOS|Android" >#0000FF</On>
                <On Platform="UWP">#FF0000</On>
            </OnPlatform>
 </ResourceDictionary> 

在代码中:

 switch (Device.RuntimePlatform)
 {
     case "iOS":
     break;
     case "Android":
     break;
     case "UWP":
     break;
     default:
     break;
 }

答案 2 :(得分:0)

您也可以这样做:

<ContentView>
        <OnPlatform x:TypeArguments="View">
            <On Platform="iOS">
                <Label Text="iOS" />
            </On>
            <On Platform="Android">
                <Label Text="Android" />
            </On>
        </OnPlatform>
    </ContentView>