src/FingersDance.Control.Menu/CustomSurfaceButton.cs
author cavaliet
Wed, 28 Oct 2009 17:07:27 +0100
changeset 182 25b49d4f1635
parent 81 6b991b7e8046
permissions -rw-r--r--
First step of data reorganisation : session is meant to disappear : a "session" is in fact a project and one project owns several cuttings, one per user. WARNING : this commit builds without problems but we can not open more than one UserPanel.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.Surface;
using Microsoft.Surface.Presentation;
using Microsoft.Surface.Presentation.Controls;

namespace FingersDance.Control.Menu
{
    public class CustomSurfaceButton:SurfaceButton
    {
        string _Action = "";
        string _Ressource = "";

        public string Action
        {
            get { return _Action; }
            set { _Action = value; }
        }

        public string Ressource
        {
            get { return _Ressource; }
            set { _Ressource = value; }
        }

        public CustomSurfaceButton()
        { }
    }
}