You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I need to wait continuosly new Reaction on Changes of a node that i'm inspecting.
With the code in the documentation:
var valueChanged = new TaskCompletionSource<string>();
positionParameter.PropertyChanged += (s, e) => valueChanged.SetResult(((IElement)s).GetPath());
Console.WriteLine("Waiting for the parameter to change...");
Console.WriteLine("A value of the element with the path {0} has been changed.", await valueChanged.Task);
is possible to wait and listen only the first change.
My request to help deal with the possibility to listen all the changes of a node (ie: every time a FaderPosition change, update a view with the value). How can I do That?
Thanks a lot
The text was updated successfully, but these errors were encountered:
var valueChanged = new TaskCompletionSource();
positionParameter.PropertyChanged += (s, e) => valueChanged.SetResult(((IElement)s).GetPath());
otherParameter.PropertyChanged += (s, e) => valueChanged.SetResult(((IElement)s).GetPath());`
Console.WriteLine("Waiting for the parameter to change...");
Console.WriteLine("A value of the element with the path {0} has been changed.", await valueChanged.Task);`
Hi,
I need to wait continuosly new Reaction on Changes of a node that i'm inspecting.
With the code in the documentation:
is possible to wait and listen only the first change.
My request to help deal with the possibility to listen all the changes of a node (ie: every time a FaderPosition change, update a view with the value). How can I do That?
Thanks a lot
The text was updated successfully, but these errors were encountered: