<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>
所以我有選擇器,我想將其標題綁定到ThemePickerTitle屬性。 如果我把它寫成內聯屬性,它會很好用。但我不想在Windows上擁有標題。所以我寫OnPlatform只有在Ios和Droid上,但現在它編譯。xamarin形式xaml OnPlatform無法在綁定上工作
我認爲typeArgument應該是不同的,但我不知道它應該是什麼 –