feat: add ImageView (#22738)
This commit is contained in:
parent
af46c1ed8d
commit
341f643b81
7 changed files with 123 additions and 0 deletions
13
lib/browser/api/views/image-view.js
Normal file
13
lib/browser/api/views/image-view.js
Normal file
|
@ -0,0 +1,13 @@
|
|||
const electron = require('electron');
|
||||
|
||||
const { View } = electron;
|
||||
const { ImageView } = process.electronBinding('image_view');
|
||||
|
||||
Object.setPrototypeOf(ImageView.prototype, View.prototype);
|
||||
|
||||
ImageView.prototype._init = function () {
|
||||
// Call parent class's _init.
|
||||
View.prototype._init.call(this);
|
||||
};
|
||||
|
||||
module.exports = ImageView;
|
Loading…
Add table
Add a link
Reference in a new issue