11 references to GroupHeaderStyle
Microsoft.Maui.Controls (10)
Compatibility\Handlers\ListView\iOS\ListViewRenderer.cs (1)
1572
: base(element.OnThisPlatform().GetGroupHeaderStyle() ==
GroupHeaderStyle
.Plain
PlatformConfiguration\iOSSpecific\ListView.cs (9)
37
/// <summary>Bindable property for <see cref="
GroupHeaderStyle
"/>.</summary>
38
public static readonly BindableProperty GroupHeaderStyleProperty = BindableProperty.Create(nameof(
GroupHeaderStyle
), typeof(
GroupHeaderStyle
), typeof(FormsElement),
GroupHeaderStyle
.Plain);
41
public static
GroupHeaderStyle
GetGroupHeaderStyle(BindableObject element)
43
return (
GroupHeaderStyle
)element.GetValue(GroupHeaderStyleProperty);
47
public static void SetGroupHeaderStyle(BindableObject element,
GroupHeaderStyle
value)
53
public static
GroupHeaderStyle
GetGroupHeaderStyle(this IPlatformElementConfiguration<iOS, FormsElement> config)
59
public static IPlatformElementConfiguration<iOS, FormsElement> SetGroupHeaderStyle(this IPlatformElementConfiguration<iOS, FormsElement> config,
GroupHeaderStyle
value)
Microsoft.Maui.Controls.Compatibility (1)
iOS\Renderers\ListViewRenderer.cs (1)
1551
: base(element.OnThisPlatform().GetGroupHeaderStyle() ==
GroupHeaderStyle
.Plain