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: 11 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 (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-10-19T16:22:25.000Z (over 1 year ago)
- Last Synced: 2025-04-06T00:33:53.171Z (11 months ago)
- Topics: gui, mouse-events, mouse-pointer, penetrable, tauri, win32, windows, windows-desktop
- Language: Rust
- Homepage:
- Size: 30.3 KB
- Stars: 10
- 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(),
);
}
```