Skip to content

Will omit ChildrenAnchor/ChildrenPile/ChildrenBinder #5

@kekyo

Description

@kekyo

In 0.17.0, added new feature named ChildrenAnchor/ChildrenPile instead ChildrenBinder.
But feel unlike them because we can easier replace by Anchor/Pile.

ChildrenAnchor/ChildrenPile:

// Temporary rent Grid children accessor
await this.IndicatorPile.ManipulateAsync(async children =>
{
    // Show WaitingBlock control
    var waitingBlock = new WaitingBlock();
    children.Add(waitingBlock);

    // ...
}

Anchor/Pile:

await this.IndicatorPile.ExecuteAsync(async indicator =>
{
    // Show WaitingBlock control
    var waitingBlock = new WaitingBlock();
    indicator.Children.Add(waitingBlock);

    // ...
}

So, will totally omit them.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions