Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Will omit ChildrenAnchor/ChildrenPile/ChildrenBinder #5

Closed
kekyo opened this issue Apr 7, 2021 · 2 comments
Closed

Will omit ChildrenAnchor/ChildrenPile/ChildrenBinder #5

kekyo opened this issue Apr 7, 2021 · 2 comments

Comments

@kekyo
Copy link
Owner

kekyo commented Apr 7, 2021

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.

@kekyo
Copy link
Owner Author

kekyo commented Apr 7, 2021

Omitted.

@kekyo kekyo closed this as completed Apr 7, 2021
@kekyo
Copy link
Owner Author

kekyo commented Apr 7, 2021

Note: If you wanna revive it, please reopen and write your reason with mension me.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant