client/src/Iri.Modernisation.Controls/ViewModel/MenuableViewModel.cs
author totetm <>
Wed, 10 Feb 2010 14:56:46 +0100
changeset 41 b51a10574e7f
parent 29 5f8d275750e7
permissions -rw-r--r--
LeftClick on an element in BookTimeLine set time at begining of the element.

using System;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
using Iri.Modernisation.BaseMVVM.ViewModel;
using Iri.Modernisation.BaseMVVM.Commands;
namespace Iri.Modernisation.Controls.ViewModel
{
    public abstract class MenuableViewModel : BaseMVVM.ViewModel.ViewModel
    {
        public MenuableViewModel()
        {
            

        }
        public abstract void ActiveContextualMenu(object sender, MouseButtonEventArgs e);
        public abstract void DisactiveContextualMenu(object sender, MouseButtonEventArgs e);
        public abstract void MenuableUserControl_MouseLeave(object sender, MouseEventArgs e);
        public abstract void MenuableUserControl_MouseEnter(object sender, MouseEventArgs e);
       
    }
  
}