5 个不稳定版本
0.3.0 | 2019 年 12 月 10 日 |
---|---|
0.2.1 | 2019 年 6 月 30 日 |
0.2.0 | 2019 年 1 月 11 日 |
0.1.1 | 2019 年 1 月 10 日 |
0.1.0 | 2019 年 1 月 8 日 |
#454 在 GUI
每月 513 次下载
在 6 crates 中使用
41KB
754 行
dialog-rs
一个用于使用各种后端显示对话框的 Rust 库。
目前 dialog-rs
支持 输入、消息、密码和问题对话框。它可以使用 dialog
、kdialog
或 zenity
工具来显示对话框。如果没有这些工具,对话框将打印到标准输出。
示例
use dialog::DialogBox;
let choice = dialog::Question::new("Would you like to install Rust?")
.title("Rust Installation")
.show()
.expect("Could not display dialog box");
if choice == dialog::Choice::Yes {
dialog::Message::new("You made the right choice!")
.title("Rust Installation")
.show()
.expect("Could not display dialog box");
}
联系
对于错误报告、补丁、功能请求或其他信息,请发送电子邮件至 [email protected]。
许可证
该项目受 MIT 许可证 许可。
dialog-rs
符合 REUSE 规范的 3.0 版本。
依赖项
~77–540KB