src/FingersDance.Control.Screen/UserControlScreen.xaml.cs
author PAMPHILE Jonathan <pamphile@efrei.fr>
Thu, 24 Sep 2009 14:46:11 +0200
changeset 100 e6e3b164a9a8
parent 95 07972aa3f2e0
child 104 1a428e733fea
permissions -rw-r--r--
ListVideo

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.Screen
{
	public partial class UserControlScreen
	{
        public String contexteGrid;
        public string Path = "";

		public UserControlScreen()
		{
			this.InitializeComponent();

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

        //Rajout un UIElement vers la grid du screen.
        public void AddToGrid(UIElement uie)
        {
            if (uie != null)
            {
                try { LayoutRoot.Children.Add(uie); }
                catch(Exception){}
            }          
        }

       
	}
}