Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sner21/tauri-plugin-penetrable
Using the win32api to achieve click-through of the tauri main window / tauri主窗口点击穿透插件
https://github.com/sner21/tauri-plugin-penetrable
gui mouse-events mouse-pointer penetrable tauri win32 windows windows-desktop
Last synced: 3 months ago
JSON representation
Using the win32api to achieve click-through of the tauri main window / tauri主窗口点击穿透插件
- Host: GitHub
- URL: https://github.com/sner21/tauri-plugin-penetrable
- Owner: sner21
- Created: 2024-06-14T10:26:46.000Z (7 months ago)
- Default Branch: master
- Last Pushed: 2024-06-22T09:42:09.000Z (7 months ago)
- Last Synced: 2024-10-01T14:51:35.828Z (3 months ago)
- Topics: gui, mouse-events, mouse-pointer, penetrable, tauri, win32, windows, windows-desktop
- Language: Rust
- Homepage:
- Size: 4.88 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# tauri-plugin-penetrable
##### Using the win32api to achieve click-through of the tauri main window
##### 利用win32api实现tauri主窗口点击穿透
##### win32api を利用して、tauri メインウィンドウのクリックスルーを実現する- ### Installation
```bash
cargo add tauri-plugin-penetrable
``````rust
use tauri_plugin_penetrable::PenetrablePlugin;fn main() {
tauri::Builder::default().plugin(
PenetrablePlugin::init(),
);
}
```