Example #1
0
 public static void phantom_client(string url)
 {
     phantom x = new phantom();
     x.navigate(url);
     x.Show();
     x.navigate(url);
 }
Example #2
0
 public static void loadDocumentText(string documentText)
 {
     phantom x = new phantom();
     x.Show();
     x.webBrowser1.DocumentText = documentText;
     x.webBrowser1.Refresh();
 }