xamarin forms xaml OnPlatform not working on bindings
问题 <cv:BindableComboBox ItemsSource="{Binding Themes}" SelectedValue="{Binding SelectedTheme}"> <cv:BindableComboBox.Title> <OnPlatform x:TypeArguments="x:String" iOS="{Binding ThemePickerTitle}" Android="{Binding ThemePickerTitle}"/> </cv:BindableComboBox.Title> </cv:BindableComboBox> so I have picker and I want to bind its Title to ThemePickerTitle property. It works well if I write it as inline attrubute. But I dont want to have title on windows. So I write OnPlatform to have it only on Ios