Convert Figma logo to code with AI

cuiliang logoClickShow

鼠标点击特效

1,011
123
1,011
25

Top Related Projects

24,801

A cross-platform launcher that simply works

Everything integration for the Windows taskbar.

:mag: Quick file search & app launcher for Windows with community-made plugins

3,895

Cross-Platform Keystroke Launcher

Quick Overview

ClickShow is a Windows utility that visually displays mouse clicks and keystrokes on the screen. It's particularly useful for presentations, screencasts, and tutorials where viewers need to see the presenter's interactions with the computer.

Pros

  • Enhances visibility of user interactions during presentations and recordings
  • Customizable appearance, including colors and size of click indicators
  • Lightweight and easy to use
  • Supports both mouse clicks and keyboard input display

Cons

  • Limited to Windows operating system
  • May require administrative privileges to run on some systems
  • Could potentially interfere with certain full-screen applications
  • No recent updates, which may indicate lack of active maintenance

Getting Started

  1. Download the latest release from the GitHub repository.
  2. Extract the ZIP file to a desired location on your computer.
  3. Run the ClickShow.exe file to start the application.
  4. Configure the settings using the system tray icon:
    • Right-click the icon to access the menu
    • Choose "Settings" to customize appearance and behavior
    • Select "Show/Hide" to toggle the visibility of click indicators
  5. To exit the application, right-click the system tray icon and choose "Exit".

Competitor Comparisons

24,801

A cross-platform launcher that simply works

Pros of Wox

  • More comprehensive application launcher with plugin system
  • Actively maintained with larger community and contributor base
  • Cross-platform support (Windows, macOS, Linux)

Cons of Wox

  • Heavier resource usage due to more features
  • Steeper learning curve for advanced functionality
  • May be overkill for users only needing mouse click visualization

Code Comparison

ClickShow (C#):

private void ShowClickForm(Point location)
{
    ClickForm form = new ClickForm();
    form.Location = location;
    form.Show();
}

Wox (C#):

public class Launcher : IDisposable
{
    private void InitializePlugins()
    {
        var plugins = PluginManager.LoadPlugins();
        PluginManager.InitializePlugins(plugins);
    }
}

While both projects are written in C#, they serve different purposes. ClickShow focuses on visualizing mouse clicks, while Wox is a more complex application launcher with plugin support. The code snippets reflect these differences, with ClickShow handling click visualization and Wox managing plugins.

Everything integration for the Windows taskbar.

Pros of EverythingToolbar

  • Integrates directly with the Windows taskbar, providing seamless access to search functionality
  • Utilizes the powerful Everything search engine, offering fast and comprehensive file search capabilities
  • Supports customizable appearance and hotkeys for enhanced user experience

Cons of EverythingToolbar

  • Requires the installation of Everything search engine as a dependency
  • Limited to Windows operating system, lacking cross-platform support
  • May have a steeper learning curve for users unfamiliar with Everything search syntax

Code Comparison

ClickShow (C#):

private void ShowClickEffects(Point p)
{
    ClickEffectWindow window = new ClickEffectWindow(p);
    window.Show();
}

EverythingToolbar (C#):

private void InitializeSearchBox()
{
    searchBox = new SearchBox();
    searchBox.TextChanged += SearchBox_TextChanged;
    searchBox.PreviewKeyDown += SearchBox_PreviewKeyDown;
}

Both projects are written in C#, but they serve different purposes. ClickShow focuses on visual click effects, while EverythingToolbar emphasizes search functionality integration with the Windows taskbar.

:mag: Quick file search & app launcher for Windows with community-made plugins

Pros of Flow.Launcher

  • More comprehensive application launcher with plugin support
  • Active development with frequent updates and improvements
  • Larger community and user base

Cons of Flow.Launcher

  • More complex setup and configuration
  • Higher resource usage due to additional features

Code Comparison

ClickShow (C#):

private void ShowClickEffect(Point p)
{
    ClickEffectWindow window = new ClickEffectWindow();
    window.Left = p.X - window.Width / 2;
    window.Top = p.Y - window.Height / 2;
    window.Show();
}

Flow.Launcher (C#):

public class Main : IPlugin
{
    public void Init(PluginInitContext context)
    {
        // Plugin initialization code
    }

    public List<Result> Query(Query query)
    {
        // Query handling and result generation
    }
}

The code snippets highlight the different focus of each project. ClickShow is centered around creating visual effects for mouse clicks, while Flow.Launcher emphasizes plugin architecture and query handling for application launching.

Flow.Launcher offers a more extensive feature set and flexibility, but may be overkill for users seeking a simple click visualization tool like ClickShow. The choice between the two depends on the specific needs and preferences of the user.

3,895

Cross-Platform Keystroke Launcher

Pros of ueli

  • Cross-platform support (Windows, macOS, Linux)
  • More extensive feature set, including plugin system and themes
  • Active development with frequent updates

Cons of ueli

  • Larger application size and resource usage
  • Steeper learning curve due to more complex features
  • May be overkill for users seeking simple mouse click visualization

Code comparison

ClickShow (C#):

private void OnMouseDown(object sender, MouseEventArgs e)
{
    ShowClickEffect(e.Location);
}

ueli (TypeScript):

private handleUserInput(userInput: string): void {
    this.searchResultItems = this.searchEngine.search(userInput);
    this.renderSearchResults();
}

Summary

ClickShow is a lightweight, Windows-specific tool focused on visualizing mouse clicks. It's simple to use and has a small footprint. ueli, on the other hand, is a feature-rich, cross-platform application launcher with extensive customization options. While ueli offers more functionality, it may be more complex for users only interested in click visualization. ClickShow's simplicity makes it ideal for its specific purpose, while ueli caters to users seeking a comprehensive productivity tool.

Convert Figma logo designs to code with AI

Visual Copilot

Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.

Try Visual Copilot

README

ClickShow

用于提示鼠标点击、鼠标位置。

特色功能

  • 鼠标点击时显示波纹特效,每个按键对应不同的颜色;
  • 支持跟随鼠标的位置指示圆标;
  • 支持多屏DPI感知;
  • 支持开机自启动;

下载地址:https://github.com/cuiliang/ClickShow/releases

图标来源:https://www.iconfont.cn/collections/detail?spm=a313x.7781069.1998910419.dc64b3430&cid=13315

test

使用

  • 系统需求:Windows7 sp1+, .Net 4.7.2 版本(win10自带)
  • 如需在任务管理器、开始菜单、以管理员身份启动的窗口上生效,请将程序(1.3.1+版本)放到 C:\Windows 或 C:\Program Files 目录下使用。这时候程序会自动提升权限。
  • 程序启动后自动缩小到系统托盘。
  • 点击X最小化到系统托盘。
  • 点击托盘图标打开主窗口,右键点击托盘图标打开菜单。

image

更新历史

1.4.1

  • 修复鼠标穿透问题。
  • 启动后检查版本更新。

1.4.0

  • 增加参数设置与自动保存。感谢 @BigDevil82 贡献代码。

1.3.3

  • 按下时的波纹效果避开中心一点。

1.3.2

  • 长按鼠标抬起时,或者鼠标移动了较远距离抬起时,显示小波纹提示抬起事件。

1.3.1

  • 避免某些情况下显示到别的窗口下面的问题。

1.3

  • 解决Win7下不生效的问题
  • 支持多屏Dpi感知
  • 支持随Windows自动启动
  • 换了一个蓝色的图标(导致程序变大了,现在210k)

可能会遇到的问题

  • 特效丢失:鼠标挂钩丢失了,这时候需要重启一下程序。

  • 自启动不生效:被各类管家或启动软件拦截,请在这些软件里设置。

广告位😎

谢谢~