diff --git a/src/Core/src/Platform/Windows/PickerExtensions.cs b/src/Core/src/Platform/Windows/PickerExtensions.cs index 30f33ec854df..95468e0c3e1c 100644 --- a/src/Core/src/Platform/Windows/PickerExtensions.cs +++ b/src/Core/src/Platform/Windows/PickerExtensions.cs @@ -9,11 +9,7 @@ public static class PickerExtensions { public static void UpdateTitle(this ComboBox nativeComboBox, IPicker picker) { - nativeComboBox.Header = string.IsNullOrEmpty(picker.Title) ? null : picker; - - nativeComboBox.HeaderTemplate = string.IsNullOrEmpty(picker.Title) ? null : - (UI.Xaml.DataTemplate)UI.Xaml.Application.Current.Resources["ComboBoxHeader"]; - + nativeComboBox.PlaceholderText = picker.Title ?? string.Empty; } public static void UpdateBackground(this ComboBox nativeComboBox, IPicker picker)