src/FingersDance.Control.Screen/UserControlScreen.xaml.cs
author sarias
Wed, 23 Sep 2009 11:10:02 +0200
changeset 82 c37122b567fa
parent 80 605e2e2e053f
child 95 07972aa3f2e0
permissions -rw-r--r--
Work ControlScreen

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 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){}
            }          
        }

       
	}
}