src/FingersDance.Control.UserPanel/TagVisuSoundControl.xaml.cs
changeset 180 1c4ad413c837
child 188 e642ad0c366b
equal deleted inserted replaced
179:97ef988c92c2 180:1c4ad413c837
       
     1 using System;
       
     2 using System.Collections.Generic;
       
     3 using System.Linq;
       
     4 using System.Text;
       
     5 using System.Windows;
       
     6 using System.Windows.Controls;
       
     7 using System.Windows.Data;
       
     8 using System.Windows.Documents;
       
     9 using System.Windows.Input;
       
    10 using System.Windows.Media;
       
    11 using System.Windows.Media.Imaging;
       
    12 using System.Windows.Navigation;
       
    13 using System.Windows.Shapes;
       
    14 using Microsoft.Surface;
       
    15 using Microsoft.Surface.Presentation;
       
    16 using Microsoft.Surface.Presentation.Controls;
       
    17 
       
    18 namespace FingersDance.Control.UserPanel
       
    19 {
       
    20     /// <summary>
       
    21     /// Interaction logic for TagVisuSoundControl.xaml
       
    22     /// </summary>
       
    23     public partial class TagVisuSoundControl : TagVisualization
       
    24     {
       
    25         public TagVisuSoundControl()
       
    26         {
       
    27             InitializeComponent();
       
    28         }
       
    29 
       
    30         private void TagVisuSoundControl_Loaded(object sender, RoutedEventArgs e)
       
    31         {
       
    32             //TODO: customize TagVisuSoundControl's UI based on this.VisualizedTag here
       
    33             Label l = new Label();
       
    34             l.Content = "Detected!";
       
    35             //grid.Children.Add(l);
       
    36         }
       
    37     }
       
    38 }