Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 610221
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T17:39:05+00:00 2026-05-13T17:39:05+00:00

My Application layer uses DialogPresenters to show some ViewModels in various dialogs (modal, splash

  • 0

My Application layer uses DialogPresenters to show some ViewModels in various dialogs (modal, splash screen, etc..).

    public DataImportDialogPresenter(DataImportViewModel viewModel, IDialogView shellView, IDialogView owner)
        : base(viewModel, shellView, owner)
    {
        //Base sets the view data context etc.
        //Monitor CancelCommand and close the dialog
        viewModel.CancelCommand = new DelegateCommand(() => Terminate());
    }

This setup works really well except for the fact that if my ViewModel decides it needs to do something on the CancelCommand (which is perfectly reasonable) then it will replace the presenter’s call to Terminate() or vice-versa.

What I would like to do is:

viewModel.CancelCommand += new DelegateCommand(() => Terminate());

In the same spirit as attaching event handlers.

  1. Is this possible in C#.NET 3.5?
  2. How would I achieve it?
  3. Is this bad MVVM practice?

Thanks

D

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T17:39:05+00:00Added an answer on May 13, 2026 at 5:39 pm

    You could use another implementation of the ICommand interface, that would wrap the original CancelCommand of the ViewModel :

    public class WrapperDelegateCommand : ICommand
    {
        private Action<object> _action;
        private ICommand _originalCommand;
    
        public WrapperDelegateCommand(Action<object> action, ICommand original)
        {
            _action = action;
            _originalCommand = original;
        }
    
        public bool CanExecute(object param)
        {
            if (originalCommand != null)
                return _originalCommand.CanExecute(param);
            return true;
        }
    
        public void Execute(object param)
        {
            if (_originalCommand != null)
                _originalCommand.Execute(param);
            _action(param);
        }
    
        public ICommand OriginalCommand { get { return _originalCommand; } }
    }
    

    You can then assign this command to the ViewModel’s command :

    viewModel.CancelCommand = new WrapperDelegateCommand(() => Terminate(), viewModel.CancelCommand);
    

    And you should probably restore the original command in the Terminate method :

    viewModel.CancelCommand = (viewModel.CancelCommand as WrapperDelegateCommand).OriginalCommand;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 301k
  • Answers 301k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Rather than a multi-dimensional array you could use nodes with… May 13, 2026 at 8:15 pm
  • Editorial Team
    Editorial Team added an answer Rate Limiting (to protect your resources eg. API) Security (for… May 13, 2026 at 8:15 pm
  • Editorial Team
    Editorial Team added an answer Take a look at the Write_fd implementation. It uses something… May 13, 2026 at 8:15 pm

Related Questions

My application uses NHibernate with a session per request implementation. I have a core
I am trying to wrap my head around doing validation in a MVC scenario.
I've created a simple desktop application in C# 3.0 to learn some C#, wpf
I'm implementing a high traffic client web application that uses a lot of REST
I am working on a .NET web application that uses an SQL Server database

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.