src/FingersDance.Control.UserPanel/UserControlUserPanel.xaml.cs
author PAMPHILE Jonathan <pamphile@efrei.fr>
Thu, 24 Sep 2009 18:30:56 +0200
changeset 119 7a370bfb4d77
parent 35 ed77793b767a
child 121 32611257e99f
permissions -rw-r--r--
PLayer

using System;
using System.IO;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Navigation;

namespace FingersDance.Control.UserPanel
{
	public partial class UserControlUserPanel
	{
		public UserControlUserPanel()
		{
			this.InitializeComponent();

			// Insert code required on object creation below this point.
		}

        public UserControlUserPanel(string path)
        {
            this.InitializeComponent();

            this.UserControlSyncSource = new FingersDance.Control.SyncSource.UserControlSyncSource(path);
            // Insert code required on object creation below this point.
        }
	}
}