src/FingersDance.Debug/UserControlDebug.xaml.cs
changeset 39 0efa1d506f28
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/FingersDance.Debug/UserControlDebug.xaml.cs	Mon Sep 07 18:41:31 2009 +0200
@@ -0,0 +1,31 @@
+using System;
+using System.Collections.Generic;
+using System.Text;
+using System.Windows;
+using System.Windows.Controls;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Input;
+using System.Windows.Media;
+using System.Windows.Media.Imaging;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+
+namespace FingersDance.Debug
+{
+	/// <summary>
+	/// Interaction logic for UserControlDebug.xaml
+	/// </summary>
+	public partial class UserControlDebug : UserControl
+	{
+		public UserControlDebug()
+		{
+			this.InitializeComponent();
+		}
+
+        public void addToList(String item)
+        {
+            this.listbox.Items.Add(item);
+        }
+	}
+}
\ No newline at end of file