Click here to Skip to main content
15,884,628 members
Articles / Desktop Programming / WPF

A nice approach for a LOB WPF application

Rate me:
Please Sign up or sign in to vote.
4.89/5 (39 votes)
22 Feb 2009CPOL13 min read 117.4K   2.1K   93  
An implementation of the MVVM Patterns + CommandModel within a WPF LOB application.
using System.Diagnostics;
using System.Windows.Input;

namespace Mainardi.ViewModels.CommandBase
{
    public abstract class CommandModel
    {
        private RoutedCommand _routedCommand;

        public CommandModel()
        {
            _routedCommand = new RoutedCommand();
        }

        public RoutedCommand Command
        {
            get { return _routedCommand; }
        }

        [DebuggerStepThrough]
        public virtual void CanExecute(object sender, CanExecuteRoutedEventArgs e)
        {
            e.CanExecute = true;
            e.Handled = true;
        }

        public abstract void Executed(object sender, ExecutedRoutedEventArgs e);
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect
Brazil Brazil
Senior Software Architect from Brazil.

Comments and Discussions