Skip to content

Commit 46c51a6

Browse files
committed
WinForms - IWinFormsWebBrowser now implements IWin32Window, IComponent, ISynchronizeInvoke
Allows access to methods like BeginInvoke()
1 parent f310370 commit 46c51a6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

CefSharp.WinForms/IWinFormsWebBrowser.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
44

55
using System;
6+
using System.ComponentModel;
7+
using System.Windows.Forms;
68

79
namespace CefSharp.WinForms
810
{
@@ -11,7 +13,7 @@ namespace CefSharp.WinForms
1113
/// <see cref="ChromiumWebBrowser" /> implementation exposes.
1214
/// </summary>
1315
/// <seealso cref="CefSharp.IWebBrowser" />
14-
public interface IWinFormsWebBrowser : IWebBrowser
16+
public interface IWinFormsWebBrowser : IWebBrowser, IWin32Window, IComponent, ISynchronizeInvoke
1517
{
1618
/// <summary>
1719
/// Occurs when the browser title changed.

0 commit comments

Comments
 (0)