We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5543b21 commit e6e85f6Copy full SHA for e6e85f6
CefSharp.Wpf.Example/Handlers/MenuHandler.cs
@@ -1,23 +1,19 @@
1
-using System;
2
-using System.Collections.Generic;
3
-using System.Linq;
4
-using System.Text;
+// Copyright © 2010-2014 The CefSharp Authors. All rights reserved.
+//
+// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
+
5
+using System;
6
7
namespace CefSharp.Wpf.Example.Handlers
8
{
-
9
public class MenuHandler : IMenuHandler
10
11
12
public bool OnBeforeContextMenu(IWebBrowser browser, IContextMenuParams parameters)
13
14
15
Console.WriteLine("Context menu opened");
16
Console.WriteLine(parameters.MisspelledWord);
17
18
return true;
19
}
20
21
22
23
0 commit comments