Currently I am writing a c# program which use for generating a html file and call javascript function when clicking button on WPF project. However, when i use the function, error exist.
Error message: A using namespace directive can only be applied to namespaces; 'System.Object' is a type not a namespace
Part of my code:
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 System.IO;
using System.Windows.Forms;
using System.Object;
namespace HTMLtesting
{
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
createHTMLPage();
}
private void stopButton_Click(object sender, RoutedEventArgs e)
{
webBrowser1.Document.InvokeScript("stopPlaying");
}