Debug data management for others panels to redisplay.
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);
}
}
}