using System; using System.Collections.Generic; using System.Text; using System.Windows; using System.Windows.Controls; using System.Windows.Media; //bad performance with bitmapeffects using System.Windows.Media.Effects; using System.Diagnostics; using NUIGroup.MultitouchFramework.Controls; using NUIGroup.MultitouchFramework.Engines; namespace NUIGroup { namespace MultitouchFramework { namespace Interaction { /// /// The on-screen multitouch keyboard /// /// public class TouchKeyboard { /// /// Constructor for the on-screen keyboard /// /// The UIElement that accepts text /// The location where the keybaord will appear public TouchKeyboard(UIElement el, TouchData data) { } } } } }