こんにちは、WPF で優れた HTML エディターが必要です。このために私がしたことは、WebBrowser を WPF ウィンドウに追加し、TinyMCE html エディターを含む html ページにナビゲートすることです。ただし、アプリを実行すると、ブラウザー コントロールにスクリプトの警告が表示されます: (画像については、この MSDN スレッドを参照してください http://social.msdn.microsoft.com/Forums/en/wpf/thread/cbc3eae6-dbc4-4074- befc-902d990fbaae )
ここで StackOverflow に Simon Mourier が投稿した COM コードを試しました (http://stackoverflow.com/questions/6138199/wpf-webbrowser-control-how-to-supress-script-errors)
今私のコードは次のようになります:
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.Runtime.InteropServices;
using System.Reflection;
namespace TinyMceWpf
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
webBrowser1.Navigated += new NavigatedEventHandler(webBrowser1_Navigated);
webBrowser1.Navigate(new
Uri(@"C:\Users\MAHESH\Desktop\TechNode\WPF\MytTechDos\TinyMceWpf\TinyMceWpf\TinyMceWpf\edit.html"));
}
private void btnGetHtml_Click(object sender, RoutedEventArgs e)
{
string editHtml = this.webBrowser1.InvokeScript("getContent").ToString();
MessageBox.Show(editHtml);
}
public static void SetSilent(WebBrowser browser, bool silent)
{
if (browser == null)
throw new ArgumentNullException("browser");
// get an IWebBrowser2 from the document
IOleServiceProvider sp = browser.Document as IOleServiceProvider;
if (sp != null)
{
Guid IID_IWebBrowserApp = new Guid("0002DF05-0000-0000-C000-000000000046");
Guid IID_IWebBrowser2 = new Guid("D30C1661-CDAF-11d0-8A3E-00C04FC9E26E");
object webBrowser;
sp.QueryService(ref IID_IWebBrowserApp, ref IID_IWebBrowser2, out webBrowser);
if (webBrowser != null)
{
webBrowser.GetType().InvokeMember("Silent", BindingFlags.Instance | BindingFlags.Public | BindingFlags.PutDispProperty, null, webBrowser, new object[] { silent });
}
}
}
[ComImport, Guid("6D5140C1-7436-11CE-8034-00AA006009FA"), InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
private interface IOleServiceProvider
{
[PreserveSig]
int QueryService([In] ref Guid guidService, [In] ref Guid riid, [MarshalAs(UnmanagedType.IDispatch)] out object ppvObject);
}
private void webBrowser1_Navigated(object sender, NavigationEventArgs e)
{
SetSilent(webBrowser1, true);
}
}
}
しかし、それは今までまだ機能していません。私は何をすべきか?助けてください。