Skip to content

Commit

Permalink
WinForms - IWinFormsWebBrowser now implements IWin32Window, IComponen…
Browse files Browse the repository at this point in the history
…t, ISynchronizeInvoke

Allows access to methods like BeginInvoke()
  • Loading branch information
amaitland committed Jun 5, 2021
1 parent 77aed48 commit 33f9058
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion CefSharp.WinForms/IWinFormsWebBrowser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.

using System;
using System.ComponentModel;
using System.Windows.Forms;

namespace CefSharp.WinForms
{
Expand All @@ -11,7 +13,7 @@ namespace CefSharp.WinForms
/// <see cref="ChromiumWebBrowser" /> implementation exposes.
/// </summary>
/// <seealso cref="CefSharp.IWebBrowser" />
public interface IWinFormsWebBrowser : IWebBrowser
public interface IWinFormsWebBrowser : IWebBrowser, IWin32Window, IComponent, ISynchronizeInvoke
{
/// <summary>
/// Occurs when the browser title changed.
Expand Down

0 comments on commit 33f9058

Please sign in to comment.