0
が、私はこのコードを持っていると私はビューモデルに移動したいのです:私はこのような何かを設定する必要があります実現ビューモデルでasyncコマンドを呼び出すにはどうすればよいですか?
resetButton.Clicked += async (sender, e) =>
{
if (App.totalPhrasePoints < 100 || await App.phrasesPage.DisplayAlert(
"Reset score",
"You have " + App.totalPhrasePoints.ToString() + " points. Reset to 0 ? ", "Yes", "No"))
App.DB.ResetPointsForSelectedPhrase(App.cfs);
};
:
私のXAMLコードで。
<Button x:Name="resetButton" Text="Reset All Points to Zero" Command="{Binding ResetButtonClickedCommand}"/>
そして、私のC#コードで:
private ICommand resetButtonClickedCommand;
public ICommand ResetButtonClickedCommand
{
get
{
return resetButtonClickedCommand ??
(resetButtonClickedCommand = new Command(() =>
{
}));
}
しかし、どのように私は、コマンドに非同期アクションに合うことができますか?