src/FingersDance.Control.UserPanel/TagVisuSoundControl.xaml.cs
author ARIAS Santiago
Wed, 04 Nov 2009 11:37:36 +0100
changeset 180 1c4ad413c837
child 188 e642ad0c366b
permissions -rw-r--r--
Sound Control Base
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
180
1c4ad413c837 Sound Control Base
ARIAS Santiago
parents:
diff changeset
     1
using System;
1c4ad413c837 Sound Control Base
ARIAS Santiago
parents:
diff changeset
     2
using System.Collections.Generic;
1c4ad413c837 Sound Control Base
ARIAS Santiago
parents:
diff changeset
     3
using System.Linq;
1c4ad413c837 Sound Control Base
ARIAS Santiago
parents:
diff changeset
     4
using System.Text;
1c4ad413c837 Sound Control Base
ARIAS Santiago
parents:
diff changeset
     5
using System.Windows;
1c4ad413c837 Sound Control Base
ARIAS Santiago
parents:
diff changeset
     6
using System.Windows.Controls;
1c4ad413c837 Sound Control Base
ARIAS Santiago
parents:
diff changeset
     7
using System.Windows.Data;
1c4ad413c837 Sound Control Base
ARIAS Santiago
parents:
diff changeset
     8
using System.Windows.Documents;
1c4ad413c837 Sound Control Base
ARIAS Santiago
parents:
diff changeset
     9
using System.Windows.Input;
1c4ad413c837 Sound Control Base
ARIAS Santiago
parents:
diff changeset
    10
using System.Windows.Media;
1c4ad413c837 Sound Control Base
ARIAS Santiago
parents:
diff changeset
    11
using System.Windows.Media.Imaging;
1c4ad413c837 Sound Control Base
ARIAS Santiago
parents:
diff changeset
    12
using System.Windows.Navigation;
1c4ad413c837 Sound Control Base
ARIAS Santiago
parents:
diff changeset
    13
using System.Windows.Shapes;
1c4ad413c837 Sound Control Base
ARIAS Santiago
parents:
diff changeset
    14
using Microsoft.Surface;
1c4ad413c837 Sound Control Base
ARIAS Santiago
parents:
diff changeset
    15
using Microsoft.Surface.Presentation;
1c4ad413c837 Sound Control Base
ARIAS Santiago
parents:
diff changeset
    16
using Microsoft.Surface.Presentation.Controls;
1c4ad413c837 Sound Control Base
ARIAS Santiago
parents:
diff changeset
    17
1c4ad413c837 Sound Control Base
ARIAS Santiago
parents:
diff changeset
    18
namespace FingersDance.Control.UserPanel
1c4ad413c837 Sound Control Base
ARIAS Santiago
parents:
diff changeset
    19
{
1c4ad413c837 Sound Control Base
ARIAS Santiago
parents:
diff changeset
    20
    /// <summary>
1c4ad413c837 Sound Control Base
ARIAS Santiago
parents:
diff changeset
    21
    /// Interaction logic for TagVisuSoundControl.xaml
1c4ad413c837 Sound Control Base
ARIAS Santiago
parents:
diff changeset
    22
    /// </summary>
1c4ad413c837 Sound Control Base
ARIAS Santiago
parents:
diff changeset
    23
    public partial class TagVisuSoundControl : TagVisualization
1c4ad413c837 Sound Control Base
ARIAS Santiago
parents:
diff changeset
    24
    {
1c4ad413c837 Sound Control Base
ARIAS Santiago
parents:
diff changeset
    25
        public TagVisuSoundControl()
1c4ad413c837 Sound Control Base
ARIAS Santiago
parents:
diff changeset
    26
        {
1c4ad413c837 Sound Control Base
ARIAS Santiago
parents:
diff changeset
    27
            InitializeComponent();
1c4ad413c837 Sound Control Base
ARIAS Santiago
parents:
diff changeset
    28
        }
1c4ad413c837 Sound Control Base
ARIAS Santiago
parents:
diff changeset
    29
1c4ad413c837 Sound Control Base
ARIAS Santiago
parents:
diff changeset
    30
        private void TagVisuSoundControl_Loaded(object sender, RoutedEventArgs e)
1c4ad413c837 Sound Control Base
ARIAS Santiago
parents:
diff changeset
    31
        {
1c4ad413c837 Sound Control Base
ARIAS Santiago
parents:
diff changeset
    32
            //TODO: customize TagVisuSoundControl's UI based on this.VisualizedTag here
1c4ad413c837 Sound Control Base
ARIAS Santiago
parents:
diff changeset
    33
            Label l = new Label();
1c4ad413c837 Sound Control Base
ARIAS Santiago
parents:
diff changeset
    34
            l.Content = "Detected!";
1c4ad413c837 Sound Control Base
ARIAS Santiago
parents:
diff changeset
    35
            //grid.Children.Add(l);
1c4ad413c837 Sound Control Base
ARIAS Santiago
parents:
diff changeset
    36
        }
1c4ad413c837 Sound Control Base
ARIAS Santiago
parents:
diff changeset
    37
    }
1c4ad413c837 Sound Control Base
ARIAS Santiago
parents:
diff changeset
    38
}