Microsoft.HockeyApp.ViewModels.FeedbackThreadVM.SetCommands C# (CSharp) Method

SetCommands() private method

private SetCommands ( ) : void
return void
        private void SetCommands()
        {
            this.ReplyCommand = new RelayCommand(() =>
            {
                (Window.Current.Content as Frame).Navigate(typeof(FeedbackFormPage));
            });

            this.ReloadCommand = new RelayCommand(async () =>
            {
                await FeedbackManager.Current.RefreshFeedbackThreadVMAsync(this);
            });
        }