일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- Big Data
- probability
- 주일설교
- Deep learning
- 김양재 목사님
- 딥러닝
- 통계
- 김양재 목사
- 데이터 과학
- R
- data science
- Statistics
- MongoDB
- 빅 데이터
- openCV
- 빅데이타
- node.js
- 빅데이터
- 우리들교회
- 인공지능
- No SQL
- 확률
- 빅 데이타
- Artificial Intelligence
- 몽고디비
- c++
- 김양재
- nodeJS
- WebGL
- Machine Learning
Archives
- Today
- Total
Scientific Computing & Data Science
[WebApp / Node Webkit] Example 9 - Window Menus 본문
목 차
이번 글에서는 Window Menus를 생성하는 방법을 알아보도록 하겠다.
Codes
package.json
{
"main": "index.html",
"name": "window menus"
}
index.html
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | <!doctype html> <html lang='en'> <head> <meta charset='UTF-8'> <title>Window Menu Example</title> <script> var nw = require('nw.gui'); // Window menu var windowMenu = new nw.Menu({ type: 'menubar' }); // Help menu var helpMenu = new nw.Menu(); // License menu var viewLicense = new nw.Menu(); // Add help menu to window menu windowMenu.append(new nw.MenuItem({ label: 'Help', submenu: helpMenu })); // Add view license menu to window menu windowMenu.append(new nw.MenuItem({ label: 'View License', submenu: viewLicense })); // About sub-entry helpMenu.append(new nw.MenuItem({ label: 'about', click: function() { alert('Window Menu Example ver.1.0.0'); } })); // View License sub-entry viewLicense.append(new nw.MenuItem({ label: 'view license', click: function() { alert('License to CINEMA4D'); } })); // Assign to window nw.Window.get().menu = windowMenu; </script> </head> <body> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Enim, ab!</p> <p>Quos nemo dolorem iste nobis repudiandae neque perferendis necessitatibus labore!</p> <p>Fugit, fuga alias iure dolore ab quis error nulla delectus.</p> <p>Neque, eos dignissimos maxime illo obcaecati debitis nemo pariatur quos!</p> <p>Aspernatur, quae sit tempore mollitia hic perspiciatis dolore. Ratione, ipsa?</p> <p>Aliquam, quidem sint veniam iste architecto deleniti sed consequuntur vel.</p> </body> </html> | cs |
Results
'Programming > Web App' 카테고리의 다른 글
[WebApp / Node Webkit] Example 11 - Using Third Party Modules (0) | 2016.02.09 |
---|---|
[WebApp / Node Webkit] Example 10 - Using Node Modules (0) | 2016.02.08 |
[WebApp / Node Webkit] Example 8 - Context Menus (0) | 2016.02.08 |
[WebApp / Node Webkit] Example 7 - Custom Window Control (0) | 2016.02.07 |
[WebApp / Node Webkit] Tutorials from nodehead (0) | 2016.01.31 |
Comments