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

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
{
    /// <summary>
    /// Interaction logic for TagVisuSoundControl.xaml
    /// </summary>
    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);
        }
    }
}