Implemented interface member:
10 references to Count
Microsoft.Maui.Controls.Compatibility (10)
iOS\Renderers\SwipeViewRenderer.cs (10)
448
if (items == null || items.
Count
== 0)
456
swipeItemsWidth = (items != null ? items.
Count
: 0) * SwipeItemWidth;
502
if (items == null || items.
Count
== 0)
928
actionSize = Element.RightItems.
Count
* SwipeItemWidth;
933
actionSize = Element.LeftItems.
Count
* SwipeItemWidth;
1166
actionSize = Element.RightItems.
Count
* SwipeItemWidth;
1171
actionSize = Element.LeftItems.
Count
* SwipeItemWidth;
1312
return new Size(items.Mode == SwipeMode.Execute ? (threshold > 0 ? threshold : contentWidth) / items.
Count
: (threshold < SwipeItemWidth ? SwipeItemWidth : threshold), contentHeight);
1334
return new Size(contentWidth / items.
Count
, (threshold > 0 && threshold < swipeItemHeight) ? threshold : swipeItemHeight);
1348
return new Size(contentWidth / items.
Count
, swipeItemHeight);