-
Notifications
You must be signed in to change notification settings - Fork 49
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
docs: Add CSM CallBack usage to Name method #2279
Conversation
@Mergifyio backport release/stable/4.1 |
✅ Backports have been created
|
09f3ba5
to
deec6a3
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
uno.extensions/doc/Learn/Markup/DependencyPropertyBuilder.md
Lines 64 to 70 in deec6a3
```cs | |
new TextBlock() | |
.Text(x => x | |
.Source("slider") | |
.Binding(() => slider.Value)), | |
new Slider().Name("slider") | |
``` |
This example should probably be:
new TextBlock()
.Text(x => x
.Source("slider")
.Binding<Slider>(slider => slider.Value)),
new Slider().Name("slider"))
@dansiegel Can you confirm please?
cc @agneszitte
This was already resolved, no need to reply to this comment.
f9d6fb5
to
5ff9063
Compare
….1/pr-2279 docs: Add CSM CallBack usage to Name method (backport #2279)
GitHub Issue (If applicable): closes #
PR Type
What kind of change does this PR introduce?
What is the new behavior?
Adds an example of how to use the
.Name
method with a callback.