Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

how to add Previous,Play/Stop,Next into my electron app same as in Spotify

I don't know how to make or do that

enter image description here

question from:https://stackoverflow.com/questions/65874261/how-to-add-previous-play-stop-next-in-windows-10-minimizes

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.3k views
Welcome To Ask or Share your Answers For Others

1 Answer

Thumbnail Toolbars in Electron

To set thumbnail toolbar in your application, you need to use BrowserWindow.setThumbarButtons.

win.setThumbarButtons(buttons)

Add a thumbnail toolbar with a specified set of buttons to the thumbnail image of a window in a taskbar button layout. Returns a Boolean object indicates whether the thumbnail has been added successfully.

The documentation follows, not a lot to explain there.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...