![trop[bot]](/assets/img/avatar_default.png)
Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com> Co-authored-by: Erick Zhao <ezhao@slack-corp.com>
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
BrowserWindow
is a subclass of theBaseWindow
module. Both modules allow you to create and manage application windows in Electron, with the main difference being thatBrowserWindow
supports a single, full size web view whileBaseWindow
supports composing many web views.BaseWindow
can be used interchangeably withBrowserWindow
in the examples of the documents in this section.