remove used Group Header Template (#5906)

This commit is contained in:
Shane Neuville 2019-04-16 10:38:17 -06:00 коммит произвёл GitHub
Родитель 4f0724fc4c
Коммит 04d9535a58
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 0 добавлений и 9 удалений

Просмотреть файл

@ -574,9 +574,6 @@ namespace Xamarin.Forms
public static readonly BindableProperty FlyoutIsPresentedProperty =
BindableProperty.Create(nameof(FlyoutIsPresented), typeof(bool), typeof(Shell), false, BindingMode.TwoWay);
public static readonly BindableProperty GroupHeaderTemplateProperty =
BindableProperty.Create(nameof(GroupHeaderTemplate), typeof(DataTemplate), typeof(Shell), null, BindingMode.OneTime);
public static readonly BindableProperty ItemsProperty = ItemsPropertyKey.BindableProperty;
public static readonly BindableProperty ItemTemplateProperty =
@ -671,12 +668,6 @@ namespace Xamarin.Forms
set => SetValue(FlyoutIsPresentedProperty, value);
}
public DataTemplate GroupHeaderTemplate
{
get => (DataTemplate)GetValue(GroupHeaderTemplateProperty);
set => SetValue(GroupHeaderTemplateProperty, value);
}
public ShellItemCollection Items => (ShellItemCollection)GetValue(ItemsProperty);
public ShellItemCollection Flyout => Items;