src/FingersDance.Control/CustomListBoxItem.cs
author cavaliet
Wed, 28 Oct 2009 17:07:27 +0100
changeset 182 25b49d4f1635
parent 147 1a5da89daee9
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.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
147
PAMPHILE Jonathan <pamphile@efrei.fr>
parents:
diff changeset
     1
using System;
PAMPHILE Jonathan <pamphile@efrei.fr>
parents:
diff changeset
     2
using System.Collections.Generic;
PAMPHILE Jonathan <pamphile@efrei.fr>
parents:
diff changeset
     3
using System.Linq;
PAMPHILE Jonathan <pamphile@efrei.fr>
parents:
diff changeset
     4
using System.Text;
PAMPHILE Jonathan <pamphile@efrei.fr>
parents:
diff changeset
     5
using Microsoft.Surface;
PAMPHILE Jonathan <pamphile@efrei.fr>
parents:
diff changeset
     6
using Microsoft.Surface.Presentation;
PAMPHILE Jonathan <pamphile@efrei.fr>
parents:
diff changeset
     7
using Microsoft.Surface.Presentation.Controls;
PAMPHILE Jonathan <pamphile@efrei.fr>
parents:
diff changeset
     8
PAMPHILE Jonathan <pamphile@efrei.fr>
parents:
diff changeset
     9
namespace FingersDance.Control
PAMPHILE Jonathan <pamphile@efrei.fr>
parents:
diff changeset
    10
{
PAMPHILE Jonathan <pamphile@efrei.fr>
parents:
diff changeset
    11
    public class CustomListBoxItem:SurfaceListBoxItem
PAMPHILE Jonathan <pamphile@efrei.fr>
parents:
diff changeset
    12
    {
PAMPHILE Jonathan <pamphile@efrei.fr>
parents:
diff changeset
    13
        public string Name = ""; 
PAMPHILE Jonathan <pamphile@efrei.fr>
parents:
diff changeset
    14
        public string Path = "";
PAMPHILE Jonathan <pamphile@efrei.fr>
parents:
diff changeset
    15
    }
PAMPHILE Jonathan <pamphile@efrei.fr>
parents:
diff changeset
    16
}