mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-07 05:37:20 +00:00
73 lines
2.4 KiB
C#
73 lines
2.4 KiB
C#
using ElectronNET.API.Entities;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ElectronNET.API
|
|
{
|
|
/// <summary>
|
|
/// A BrowserView can be used to embed additional web content into a BrowserWindow.
|
|
/// It is like a child window, except that it is positioned relative to its owning window.
|
|
/// It is meant to be an alternative to the webview tag.
|
|
/// </summary>
|
|
public class BrowserView : ApiBase
|
|
{
|
|
protected override SocketTaskEventNameTypes SocketTaskEventNameType => SocketTaskEventNameTypes.DashesLowerFirst;
|
|
protected override SocketTaskMessageNameTypes SocketTaskMessageNameType => SocketTaskMessageNameTypes.DashesLowerFirst;
|
|
|
|
/// <summary>
|
|
/// Gets the identifier.
|
|
/// </summary>
|
|
public override int Id { get; protected set; }
|
|
|
|
/// <summary>
|
|
/// Render and control web pages.
|
|
/// </summary>
|
|
public WebContents WebContents { get; internal set; }
|
|
|
|
/// <summary>
|
|
/// Resizes and moves the view to the supplied bounds relative to the window.
|
|
/// (experimental)
|
|
/// </summary>
|
|
public Rectangle Bounds
|
|
{
|
|
get
|
|
{
|
|
return Task.Run(() => this.InvokeAsync<Rectangle>()).Result;
|
|
}
|
|
set
|
|
{
|
|
BridgeConnector.Socket.Emit("browserView-bounds-set", Id, value);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// BrowserView
|
|
/// </summary>
|
|
internal BrowserView(int id)
|
|
{
|
|
Id = id;
|
|
|
|
// Workaround: increase the Id so as not to conflict with BrowserWindow id
|
|
// the backend detect about the value an BrowserView
|
|
WebContents = new WebContents(id + 1000);
|
|
}
|
|
|
|
/// <summary>
|
|
/// (experimental)
|
|
/// </summary>
|
|
/// <param name="options"></param>
|
|
public void SetAutoResize(AutoResizeOptions options)
|
|
{
|
|
BridgeConnector.Socket.Emit("browserView-setAutoResize", Id, options);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Color in #aarrggbb or #argb form. The alpha channel is optional.
|
|
/// (experimental)
|
|
/// </summary>
|
|
/// <param name="color">Color in #aarrggbb or #argb form. The alpha channel is optional.</param>
|
|
public void SetBackgroundColor(string color)
|
|
{
|
|
BridgeConnector.Socket.Emit("browserView-setBackgroundColor", Id, color);
|
|
}
|
|
}
|
|
} |