10 references to SeparatorStyle
Microsoft.Maui.Controls (9)
PlatformConfiguration\iOSSpecific\ListView.cs (9)
9
/// <summary>Bindable property for <see cref="
SeparatorStyle
"/>.</summary>
10
public static readonly BindableProperty SeparatorStyleProperty = BindableProperty.Create(nameof(
SeparatorStyle
), typeof(
SeparatorStyle
), typeof(FormsElement),
SeparatorStyle
.Default);
13
public static
SeparatorStyle
GetSeparatorStyle(BindableObject element)
15
return (
SeparatorStyle
)element.GetValue(SeparatorStyleProperty);
19
public static void SetSeparatorStyle(BindableObject element,
SeparatorStyle
value)
25
public static
SeparatorStyle
GetSeparatorStyle(this IPlatformElementConfiguration<iOS, FormsElement> config)
31
public static IPlatformElementConfiguration<iOS, FormsElement> SetSeparatorStyle(this IPlatformElementConfiguration<iOS, FormsElement> config,
SeparatorStyle
value)
Microsoft.Maui.Controls.Compatibility (1)
iOS\Renderers\ListViewRenderer.cs (1)
1127
if (List.OnThisPlatform().GetSeparatorStyle() ==
SeparatorStyle
.FullWidth)