Business Logic Toolkit for .NET
www.bltoolkit.net
|  Home   |  Download   |  Documentation   |  Discussions   |  License   |

  Source.ComponentModel.ObjectEditEventArgs.cs

 
using System;

namespace BLToolkit.ComponentModel
{
    public class ObjectEditEventArgs
    {
        public ObjectEditEventArgs(ObjectEditType editType)
        {
            _editType = editType;
        }

        private ObjectEditType _editType;
        public  ObjectEditType  EditType
        {
            get { return _editType;  }
            set { _editType = value; }
        }
    }
}
 
© 2010 www.bltoolkit.net
support@bltoolkit.net