#通知 #winapi #windows

win32_notification

允许轻松创建和操作Win32通知

1个不稳定版本

0.1.0 2020年1月4日

#190Windows API

MIT 许可证

12KB
188

win32_notification

Shell_NotifyIcon 的一个简单封装。有关其工作原理的更多信息,请参阅我的博客文章

use std::thread;
use std::time::Duration;
use win32_notification::NotificationBuilder;

fn main() {
    let notification = NotificationBuilder::new()
        .title_text("Notification Title")
        .info_text("This is the notification body")
        .build()
        .expect("Could not create notification");

    notification.show().expect("Failed to show notification");
    thread::sleep(Duration::from_secs(5));
    notification
        .delete()
        .expect("Failed to delete notification");
}

依赖项

~225KB