This commit is contained in:
Oleksandr Liakhevych 2021-09-18 21:45:27 +03:00
Родитель 8c5eac3fbd
Коммит a10300c95a
3 изменённых файлов: 15 добавлений и 0 удалений

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

@ -22,6 +22,11 @@ namespace Microsoft.MobileBlazorBindings.Elements.Handlers
_parent = (TElementType)parentElement;
}
public void Remove()
{
// Because this Handler is used internally only, this method is no-op.
}
void IMauiContainerElementHandler.AddChild(MC.Element child, int physicalSiblingIndex)
{
_setPropertyAction(_parent, child);

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

@ -28,6 +28,11 @@ namespace Microsoft.MobileBlazorBindings.Elements.Handlers
_setPropertyAction(parent, dataTemplate);
}
public void Remove()
{
// Because this Handler is used internally only, this method is no-op.
}
// Because this is a 'fake' element, all matters related to physical trees
// should be no-ops.

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

@ -23,6 +23,11 @@ namespace Microsoft.MobileBlazorBindings.Elements.Handlers
_propertyItems = _listPropertyAccessor((TElementType)parentElement);
}
public void Remove()
{
// Because this Handler is used internally only, this method is no-op.
}
void IMauiContainerElementHandler.AddChild(MC.Element child, int physicalSiblingIndex)
{
if (!(child is TItemType typedChild))