920 B
920 B
import DocCardList from '@theme/DocCardList';
Window Customization
The BrowserWindow module is the foundation of your Electron application, and
it exposes many APIs that let you customize the look and behavior of your app’s windows.
This section covers how to implement various use cases for window customization on macOS,
Windows, and Linux.
Note
BrowserWindowis a subclass of theBaseWindowmodule. Both modules allow you to create and manage application windows in Electron, with the main difference being thatBrowserWindowsupports a single, full size web view whileBaseWindowsupports composing many web views.BaseWindowcan be used interchangeably withBrowserWindowin the examples of the documents in this section.