Click here to Skip to main content
15,886,788 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.5K   2.1K   93  
An implementation of the MVVM Patterns + CommandModel within a WPF LOB application.
using System;

namespace Mainardi.ViewModels.VMBase
{
    public abstract class BaseWorkspaceViewModel : ViewModelBase
    {
        protected string[] _error;

        private Object _DataContext;

        private bool _canSave;

        public bool CanSave
        {
            get { return _canSave; }
            set
            {
                if (_canSave != value)
                {
                    _canSave = value;
                    OnPropertyChanged(this, "CanSave");
                }
            }
        }

        public Object DataContext
        {
            get { return _DataContext; }
            set
            {
                if (_DataContext != value)
                {
                    _DataContext = value;
                    OnPropertyChanged(this, "DataContext");
                }
            }
        }

        public abstract Mainardi.ViewModels.CommandBase.CommandModel DeleteCommand { get; }

        public abstract Mainardi.ViewModels.CommandBase.CommandModel SaveCommand { get; }

        public abstract Mainardi.ViewModels.CommandBase.CommandModel CancelCommand { get; }
    }
}

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