diff -r 97ef988c92c2 -r 1c4ad413c837 src/FingersDance.Control.UserPanel/TagVisuSoundControl.xaml.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/FingersDance.Control.UserPanel/TagVisuSoundControl.xaml.cs Wed Nov 04 11:37:36 2009 +0100 @@ -0,0 +1,38 @@ +using System; +using System.Collections.Generic; +using System.Linq; +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; +using Microsoft.Surface; +using Microsoft.Surface.Presentation; +using Microsoft.Surface.Presentation.Controls; + +namespace FingersDance.Control.UserPanel +{ + /// + /// Interaction logic for TagVisuSoundControl.xaml + /// + public partial class TagVisuSoundControl : TagVisualization + { + public TagVisuSoundControl() + { + InitializeComponent(); + } + + private void TagVisuSoundControl_Loaded(object sender, RoutedEventArgs e) + { + //TODO: customize TagVisuSoundControl's UI based on this.VisualizedTag here + Label l = new Label(); + l.Content = "Detected!"; + //grid.Children.Add(l); + } + } +}