ok, i fixed both the quotations and inserted after the TextBox xaml.
but now its giving me an error saying “Partial Declarations of ‘MultitouchHelloWorld.Window1’ must not specify different base classes.”
here’s the code:
-----------------------------------------------
Window1.xaml.cs
-----------------------------------------------
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;
namespace MultitouchHelloWorld
{
///
/// Interaction logic for Window1.xaml
///
public partial class Window1 : Multitouch.Framework.WPF.Controls.Window
{
public Window1()
{
InitializeComponent();
}
}
}
------------------------------------------------------------
of course, its saying that the error is around the code “public partial class Window1 : Multitouch.Framework.WPF.Controls.Window”