Scenario
I have a window and it has an add task button
that is opening a window. Everytime user clicks on it, it opens a window. I have a button on add task window
that minimize it. How to implement this minimize button?
Code
I am able to close
maximize
window by using the code below:
var winclose = function () {
window.close();
}
var winmaximize = function () {
window.moveTo(0, 0);
window.resizeTo(screen.width, screen.height);
}
However, I am not able to find any function that can minimize a window from rendered process.
Please help, many thanks;
Note:
Browsers do not provide a function to devs to minimize them. but here
is a different scenario. Here I am using chromium provided by Electronjs. So, there must be a way to do so as we are developing a desktop application
Dummy Download link: download from OneDrive
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…