Cant make commands works with server and wasm #15239
Unanswered
candinho87
asked this question in
Q&A
Replies: 1 comment
-
The following code works well for me: <Button Content="Do something async"
Command="{Binding DoSomethingCommand}" /> [RelayCommand]
private async Task DoSomething()
{
await Task.Delay(1000);
Name = "TestTestTest";
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I'n testing uno and got some weird problem, in wpf i just bind the commands to buttons and it works nothing more is needed, but now with uno, it just doens't work
Beta Was this translation helpful? Give feedback.
All reactions