Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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主窗口点击穿透插件

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(),
);
}
```