在<switchcell>

时间:2017-07-26 04:42:46

标签: xamarin xamarin.forms

我有这个C#代码

public static class AS
{
    public static bool ss;  // Show Subcategory
}

public SettingsPage()
{
   InitializeComponent();

}

void SsSwitch(object sender, ToggledEventArgs e)
{
   App.DB.UpdateBoolSetting(Settings.Ss, e.Value);
   //
   // code here will update the value of AS.ss
   // after the database has been updated
   //
}

这个XAML

<SwitchCell x:Name="SWCData" Text="Select Your Network" 
     On="{Binding AS.ss}" OnChanged="SsSwitch" />

我收到一条消息,指出该视图没有属性或可绑定属性。

任何人都可以给我这方面的帮助吗?

1 个答案:

答案 0 :(得分:1)

如果您绑定静态类,请参考以下代码绑定

<SwitchCell  Text="Select Your Network" 
                           On="{Binding Source={x:Static local:AS.ss}}" OnChanged="SsSwitch" />