src/FingersDance.Debug/UserControlDebug.xaml.cs
author PAMPHILE Jonathan <pamphile@efrei.fr>
Thu, 19 Nov 2009 09:29:15 +0100
changeset 210 574041f3b2c9
parent 39 0efa1d506f28
permissions -rw-r--r--
Indentations
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
39
0efa1d506f28 Correct compilation + lib
ymh
parents:
diff changeset
     1
using System;
0efa1d506f28 Correct compilation + lib
ymh
parents:
diff changeset
     2
using System.Collections.Generic;
0efa1d506f28 Correct compilation + lib
ymh
parents:
diff changeset
     3
using System.Text;
0efa1d506f28 Correct compilation + lib
ymh
parents:
diff changeset
     4
using System.Windows;
0efa1d506f28 Correct compilation + lib
ymh
parents:
diff changeset
     5
using System.Windows.Controls;
0efa1d506f28 Correct compilation + lib
ymh
parents:
diff changeset
     6
using System.Windows.Data;
0efa1d506f28 Correct compilation + lib
ymh
parents:
diff changeset
     7
using System.Windows.Documents;
0efa1d506f28 Correct compilation + lib
ymh
parents:
diff changeset
     8
using System.Windows.Input;
0efa1d506f28 Correct compilation + lib
ymh
parents:
diff changeset
     9
using System.Windows.Media;
0efa1d506f28 Correct compilation + lib
ymh
parents:
diff changeset
    10
using System.Windows.Media.Imaging;
0efa1d506f28 Correct compilation + lib
ymh
parents:
diff changeset
    11
using System.Windows.Navigation;
0efa1d506f28 Correct compilation + lib
ymh
parents:
diff changeset
    12
using System.Windows.Shapes;
0efa1d506f28 Correct compilation + lib
ymh
parents:
diff changeset
    13
0efa1d506f28 Correct compilation + lib
ymh
parents:
diff changeset
    14
namespace FingersDance.Debug
0efa1d506f28 Correct compilation + lib
ymh
parents:
diff changeset
    15
{
0efa1d506f28 Correct compilation + lib
ymh
parents:
diff changeset
    16
	/// <summary>
0efa1d506f28 Correct compilation + lib
ymh
parents:
diff changeset
    17
	/// Interaction logic for UserControlDebug.xaml
0efa1d506f28 Correct compilation + lib
ymh
parents:
diff changeset
    18
	/// </summary>
0efa1d506f28 Correct compilation + lib
ymh
parents:
diff changeset
    19
	public partial class UserControlDebug : UserControl
0efa1d506f28 Correct compilation + lib
ymh
parents:
diff changeset
    20
	{
0efa1d506f28 Correct compilation + lib
ymh
parents:
diff changeset
    21
		public UserControlDebug()
0efa1d506f28 Correct compilation + lib
ymh
parents:
diff changeset
    22
		{
0efa1d506f28 Correct compilation + lib
ymh
parents:
diff changeset
    23
			this.InitializeComponent();
0efa1d506f28 Correct compilation + lib
ymh
parents:
diff changeset
    24
		}
0efa1d506f28 Correct compilation + lib
ymh
parents:
diff changeset
    25
0efa1d506f28 Correct compilation + lib
ymh
parents:
diff changeset
    26
        public void addToList(String item)
0efa1d506f28 Correct compilation + lib
ymh
parents:
diff changeset
    27
        {
0efa1d506f28 Correct compilation + lib
ymh
parents:
diff changeset
    28
            this.listbox.Items.Add(item);
0efa1d506f28 Correct compilation + lib
ymh
parents:
diff changeset
    29
        }
0efa1d506f28 Correct compilation + lib
ymh
parents:
diff changeset
    30
	}
0efa1d506f28 Correct compilation + lib
ymh
parents:
diff changeset
    31
}