src/FingersDance.Control.UserPanel/UserControlUserPanel.xaml.cs
author sarias
Sun, 11 Oct 2009 20:34:56 +0200
changeset 138 61ba19954ed4
parent 131 9331c3dea175
child 146 dd8ed4d3beb6
permissions -rw-r--r--
To rotate the layout based on the suggested orientation + DEBUG actionGeneration ActionStartOrEndAnnotation

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 int id = 0;

		public UserControlUserPanel()
		{
			this.InitializeComponent();

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

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

            this.UserControlSyncSource.Load(path);
            // Insert code required on object creation below this point.
        }
	}
}