积分充值
 首页
前端开发
AngularDartElectronFlutterHTML/CSSJavaScriptReactSvelteTypeScriptVue.js构建工具
后端开发
.NetC#C++C语言DenoffmpegGoIdrisJavaJuliaKotlinLeanMakefilenimNode.jsPascalPHPPythonRISC-VRubyRustSwiftUML其它语言区块链开发测试微服务敏捷开发架构设计汇编语言
数据库
Apache DorisApache HBaseCassandraClickHouseFirebirdGreenplumMongoDBMySQLPieCloudDBPostgreSQLRedisSQLSQLiteTiDBVitess数据库中间件数据库工具数据库设计
系统运维
AndroidDevOpshttpdJenkinsLinuxPrometheusTraefikZabbix存储网络与安全
云计算&大数据
Apache APISIXApache FlinkApache KarafApache KyuubiApache OzonedaprDockerHadoopHarborIstioKubernetesOpenShiftPandasrancherRocketMQServerlessService MeshVirtualBoxVMWare云原生CNCF机器学习边缘计算
综合其他
BlenderGIMPKiCadKritaWeblate产品与服务人工智能亿图数据可视化版本控制笔试面试
文库资料
前端
AngularAnt DesignBabelBootstrapChart.jsCSS3EchartsElectronHighchartsHTML/CSSHTML5JavaScriptJerryScriptJestReactSassTypeScriptVue前端工具小程序
后端
.NETApacheC/C++C#CMakeCrystalDartDenoDjangoDubboErlangFastifyFlaskGinGoGoFrameGuzzleIrisJavaJuliaLispLLVMLuaMatplotlibMicronautnimNode.jsPerlPHPPythonQtRPCRubyRustR语言ScalaShellVlangwasmYewZephirZig算法
移动端
AndroidAPP工具FlutterFramework7HarmonyHippyIoniciOSkotlinNativeObject-CPWAReactSwiftuni-appWeex
数据库
ApacheArangoDBCassandraClickHouseCouchDBCrateDBDB2DocumentDBDorisDragonflyDBEdgeDBetcdFirebirdGaussDBGraphGreenPlumHStreamDBHugeGraphimmudbIndexedDBInfluxDBIoTDBKey-ValueKitDBLevelDBM3DBMatrixOneMilvusMongoDBMySQLNavicatNebulaNewSQLNoSQLOceanBaseOpenTSDBOracleOrientDBPostgreSQLPrestoDBQuestDBRedisRocksDBSequoiaDBServerSkytableSQLSQLiteTiDBTiKVTimescaleDBYugabyteDB关系型数据库数据库数据库ORM数据库中间件数据库工具时序数据库
云计算&大数据
ActiveMQAerakiAgentAlluxioAntreaApacheApache APISIXAPISIXBFEBitBookKeeperChaosChoerodonCiliumCloudStackConsulDaprDataEaseDC/OSDockerDrillDruidElasticJobElasticSearchEnvoyErdaFlinkFluentGrafanaHadoopHarborHelmHudiInLongKafkaKnativeKongKubeCubeKubeEdgeKubeflowKubeOperatorKubernetesKubeSphereKubeVelaKumaKylinLibcloudLinkerdLonghornMeiliSearchMeshNacosNATSOKDOpenOpenEBSOpenKruiseOpenPitrixOpenSearchOpenStackOpenTracingOzonePaddlePaddlePolicyPulsarPyTorchRainbondRancherRediSearchScikit-learnServerlessShardingSphereShenYuSparkStormSupersetXuperChainZadig云原生CNCF人工智能区块链数据挖掘机器学习深度学习算法工程边缘计算
UI&美工&设计
BlenderKritaSketchUI设计
网络&系统&运维
AnsibleApacheAWKCeleryCephCI/CDCurveDevOpsGoCDHAProxyIstioJenkinsJumpServerLinuxMacNginxOpenRestyPrometheusServertraefikTrafficUnixWindowsZabbixZipkin安全防护系统内核网络运维监控
综合其它
文章资讯
 上传文档  发布文章  登录账户
IT文库
  • 综合
  • 文档
  • 文章

无数据

分类

全部云计算&大数据(84)VirtualBox(84)后端开发(81)Julia(77)系统运维(14)Linux(14)数据库(4)Python(4)Firebird(4)PyMuPDF(4)

语言

全部英语(170)中文(简体)(14)法语(1)英语(1)

格式

全部PDF文档 PDF(186)
 
本次搜索耗时 0.036 秒,为您找到相关结果约 186 个.
  • 全部
  • 云计算&大数据
  • VirtualBox
  • 后端开发
  • Julia
  • 系统运维
  • Linux
  • 数据库
  • Python
  • Firebird
  • PyMuPDF
  • 全部
  • 英语
  • 中文(简体)
  • 法语
  • 英语
  • 全部
  • PDF文档 PDF
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 通过 Electron 托盘(tray)实现后台执⾏⻓任务

    Electron 托盘(tray)实现后台执⾏⻓任务。 Electron 应⽤在执⾏⼀些⻓时间任务(⽐如上传、下载),我们想关闭界⾯后任务依旧执⾏。再次打开界⾯,依旧可以看到正在执⾏的任务以及任 务进度。托盘可以帮我们实现这个功能。 创建托盘和菜单示例 实例化 Tray 并传⼊图标路径; 创建菜单并配置到托盘中。 const { app, Menu, Tray } = require('electron') require('electron') let tray = null; // 等同 app.on('read', () => { ... }) app.whenReady().then(() => { tray = new Tray('/path/to/my/icon') const contextMenu = Menu.buildFromTemplate([ { label: { label: 'Item3', type: 'radio', checked: true }, { label: 'Item4', type: 'radio' } ]) tray.setContextMenu(contextMenu) }) 基于托盘功能实现后台运⾏应⽤ 关闭应⽤前唤醒对话框⼆次确认 关闭应⽤时,触发对话框,可⽀持 3 种场景: 点击「取消」取消关闭操作;
    0 码力 | 6 页 | 1.19 MB | 1 年前
    3
  • pdf文档 electron中文教程

    powerMonitor - 2 - 本文档使用 书栈(BookStack.CN) 构建 powerSaveBlocker protocol session webContents Tray 在渲染进程(网页)内可用的模块 desktopCapturer ipcRenderer remote webFrame 在两种进程中都可用的模块 clipboard crashReporter 8系统下,你需要将你的应用通过一个Application UserModel ID.aspx)安 装到开始屏幕上。需要注意的是,这不是将你的应用固定到开始屏幕。 在Windows 7以及更低的版本中,通知不被支持。不过你可以使用Tray API发送一个"气泡通知"。 此外,通知支持的最大字符长队为250。Windows团队建议通知应该保持在200个字符以下。 通知使用 libnotify 发送,它能在任何支持Desktop globalShortcut ipcMain Menu MenuItem powerMonitor powerSaveBlocker protocol session webContents Tray 在主进程内可用的模块 - 74 - 本文档使用 书栈(BookStack.CN) 构建 app 模块是为了控制整个应用的生命周期设计的。 下面的这个例子将会展示如何在最后一个窗口被关闭时退出应用:
    0 码力 | 203 页 | 2.72 MB | 1 年前
    3
  • pdf文档 firebird 5 quickstartguide

    application If Firebird is up and running as an application, it is represented by an icon in the system tray: • A green and grey server symbol if controlled by the Guardian; • A round yellow and black graphic reboot is necessary. You can shut the server down via the menu that appears if you right-click on the tray icon. Notice that this also makes the icon disappear; you can restart Firebird via the Start menu firebird processes will always equal the number of client connections plus one. Shutdown via the tray icon menu only terminates the first process (the listener). Other processes, if present, will continue
    0 码力 | 49 页 | 396.21 KB | 1 年前
    3
  • pdf文档 Firebird 2 QuickStart

    application If Firebird is up and running as an application, it is represented by an icon in the system tray: • A green and grey server symbol if controlled by the Guardian; • A round yellow and black graphic without Guardian. You can shut the server down via the menu that appears if you right-click on the tray icon. Notice that this also makes the icon disappear; you can restart Firebird via the Start menu fb_inet_server processes will always equal the number of client connections plus one. Shutdown via the tray icon menu only terminates the first process (the listener). Other processes, if present, will continue
    0 码力 | 40 页 | 218.42 KB | 1 年前
    3
  • pdf文档 Ubuntu Desktop Training 2009

    the Fast User Switching topic of this lesson. Figure 2.13. The Fast User Switch Icon The System tray contains the network and sound icons for quick access to network and sound settings. You can check the volume of your computer's speaker. The current date and time is displayed next to the System tray. If you click the date and time, a calendar is displayed. The last icon on the top panel shuts down in the Print dialogue box to define the properties of the printer, such as orientation, the paper tray to be used and the paper size to be printed. 108 Chapter 4. Using OpenOffice.org Applications Ubuntu
    0 码力 | 428 页 | 57.45 MB | 1 年前
    3
  • pdf文档 Coexistence Firebird InterBase

    net/projects/ibfbcoex/ and get DBServerToggler. This little feller, when started, nestles itself in the System Tray and does all the dirty work for you. You start and stop either server with the click of a button;
    0 码力 | 8 页 | 48.66 KB | 1 年前
    3
  • pdf文档 MuPDF 1.22.0 Documentation

    • page_size_y= Set the page_size_y field. • separations= Set the separations field. • tray_switch= Set the tray_switch field. • tumble= Set the tumble field. • media_type_num= Set the media_type_num
    0 码力 | 175 页 | 698.87 KB | 7 月前
    3
  • pdf文档 Firebird 1.0 QuickStart

    be running as an application, monitored by the Guardi- an. The Guardian's icon should appear in the tray with a green graphic. If the icon is flashing or show- ing as a red graphic, it indicates that Guardian
    0 码力 | 26 页 | 179.05 KB | 1 年前
    3
  • pdf文档 openEuler 21.03 技术白皮书

    taskbar displayed at the bottom of the desktop. It consists of the launcher, application icons, tray, and system plug-ins. Developers can open, create, close, or exit an application, set the volume,
    0 码力 | 21 页 | 948.66 KB | 1 年前
    3
  • pdf文档 MuPDF 1.23.0 Documentation

    • page_size_y= Set the page_size_y field. • separations= Set the separations field. • tray_switch= Set the tray_switch field. • tumble= Set the tumble field. • media_type_num= Set the media_type_num
    0 码力 | 245 页 | 817.74 KB | 7 月前
    3
共 186 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 19
前往
页
相关搜索词
通过Electron托盘tray实现后台任务electron中文教程firebirdquickstartguideFirebirdQuickStartUbuntuDesktopTrainingCoexistenceInterBaseMuPDF1.22Documentation1.0openEuler21.03技术白皮皮书白皮书1.23
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩