2017-10-10 25 views
0

webbrowserコントロールにHTMLページがロードされています。 HTMLには、ブラウザから印刷しようとするjavascript関数windows.printがあります。 Winforms C#で印刷するには、windows.print()関数をどのように渡すことができますか。または、どのように私は印刷するC#に印刷するjavascriptオブジェクトを渡すことができます。C#winforms webbrowser control with Javascript

私はC#の初心者ですから、詳しい説明をお願いします。本当にありがとう!

答えて

0

あなたはおそらく働いていたこと、本当にありがとうございました。この

namespace WindowsFormsApplication 
{ 
    // This first namespace is required for the ComVisible attribute used on the ScriptManager class. 
    using System.Runtime.InteropServices; 
    using System.Windows.Forms; 

    // This is your form. 
    public partial class Form1 : Form 
    { 
     // This nested class must be ComVisible for the JavaScript to be able to call it. 
     [ComVisible(true)] 
     public class ScriptManager 
     { 
      // Variable to store the form of type Form1. 
      private Form1 mForm; 

      // Constructor. 
      public ScriptManager(Form1 form) 
      { 
       // Save the form so it can be referenced later. 
       mForm = form; 
      } 

      // This method can be called from JavaScript. 
      public void MethodToCallFromScript() 
      { 
       // Call a method on the form. 
       mForm.DoSomething(); 
      } 

      // This method can also be called from JavaScript. 
      public void AnotherMethod(string message) 
      { 
       MessageBox.Show(message); 
      } 
     } 

     // This method will be called by the other method (MethodToCallFromScript) that gets called by JavaScript. 
     public void DoSomething() 
     { 
      // Indicate success. 
      MessageBox.Show("It worked!"); 
     } 

     // Constructor. 
     public Form1() 
     { 
      // Boilerplate code. 
      InitializeComponent(); 

      // Set the WebBrowser to use an instance of the ScriptManager to handle method calls to C#. 
      webBrowser1.ObjectForScripting = new ScriptManager(this); 

      // Create the webpage. 
      webBrowser1.DocumentText = @"<html> 
       <head> 
        <title>Test</title> 
       </head> 
       <body> 
       <input type=""button"" value=""Go!"" onclick=""window.external.MethodToCallFromScript();"" /> 
        <br /> 
        <input type=""button"" value=""Go Again!"" onclick=""window.external.AnotherMethod('Hello');"" /> 
       </body> 
       </html>"; 
     } 
    } 
} 
+0

ような何かを行うことができます。今、私はMethodCallFromScriptメソッドにパラメータを追加しようとしていますが、エラーをスローします。それはただ一つの議論しか取らないということです。 –

+0

ScriptManagerクラスで複数のパラメータを取るメソッドを定義したり、js関数呼び出しに適したメソッドシグネチャを定義して呼び出すことができます。 – Charles

+0

上記のコードでどのように達成するのか、例を挙げてください。 –

関連する問題