diff -r fe84b5081ba2 -r 0efa1d506f28 src/FingersDance.Debug/UserControlDebug.xaml.cs --- /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 +{ + /// + /// Interaction logic for UserControlDebug.xaml + /// + 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