C# 鼠标左右手切换

using System;

using System.Collections.Generic;

using System.Text;

using System.Runtime.InteropServices;

namespace SwapMouse

{

    class Program

    {

        [DllImport("user32.dll")]

        private extern static bool SwapMouseButton(bool fSwap);

        //博客地址:http://www.jqpress.com

        [DllImport("user32.dll")]

        private extern static int GetSystemMetrics(int index);

        static void Main(string[] args)

        {

            int flag = GetSystemMetrics(23);//获取当前鼠标设置状态

            if (flag == 0)//右手习惯

            {

                SwapMouseButton(true);//设置成左手

            }

            else//左手习惯

            {

                SwapMouseButton(false);//设置成右手

            }

        }

    }

}

时间: 2024-10-29 22:35:42

C# 鼠标左右手切换的相关文章

C#控制台程序实现鼠标左右手习惯切换

最近患上了鼠标手.比较疼,影响到了工作. 干脆左手用起了鼠标. 每次都要到控制面板去修改设定比较繁琐 所以决定写个小工具. using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Runtime.InteropServices; using System.Reflection; namespace

给mac 配置外接键盘 和鼠标 输入法切换

作为代码狗,mac的键盘不能敲出幸福的码农生活. 纠结了好久,中途尝试了其他方法,最终还是觉得用mac方便,因为论文和编码都能解决,还能回家加班,比用台式机方便很多. 不能再让我的mac只用于娱乐啦.开始苦逼的两年冲刺!!!! 外接屏幕非常棒,再也不想看小小的13寸啦. 外接键盘+鼠标 问题一: 鼠标反应迟缓. 首先,考虑是否必须要用mm鼠标(apple的), google发现,大家都不推荐.那么,大家是如何解决鼠标迟缓的呢? 方案一:调节鼠标的跟踪速度(通过系统设置,鼠标,请google 如何

JUnit+WebDriver登录模拟鼠标移动切换窗口等操作练习(cssSelector初练手)

cssSelector 据说cssSelector比xpath快.所以,有固定ID属性的页面元素用By.id或者By.cssSelector("#id属性值")来找,有class属性优先用By.cssSelector(".class属性值")的就尽量用cssSelector(#代表id=,.代表class=). 如下博客有详细介绍cssSelector: http://blog.csdn.net/tenfyguo/article/details/5780970 窗口

【分享】jQuery无插件实现 鼠标拖动切换图片/内容 功能

前言 我就想随便叨逼叨几句,爱看就看几句,不爱看就直接跳过看正文就好啦~ 这个方法是仿写页面时我自己研究出来,可能有比我更简单的方法. 但我不管,因为我没查我不知道,我就觉得我的最好啦,耶耶耶~ 效果图 功能描述 1.鼠标按住移动一定距离,内容随之进行切换. 2.开始和结尾处不能再拖动了. 3.下方的控制条随之变换,进行切换指示. 解决思路 1.利用jQuery监听鼠标移动距离 2.内容浮动排成一列,长度是父容器宽度的3倍 3.当移动距离超过一定长度时,内容移动一倍父容器宽度的距离 4.内容移动

鼠标单击切换图片

<style> body{background:#000000;text-align:center;} h1{margin:40px;color:#FFFFFF;font-weight:bold;} hr{color:#FFFFFF;margin:20px;} #Bos{width:500px;height:200px;margin:100px auto;}</style> <script> window.onload=function() { var curIndex

用jQuery实现鼠标移动切换图片动画

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Typ

鼠标事件切换代码

$(document).ready(funciton(){     $('#demo').bind('click', evenClick);//第一次点击执行evenClick方法 }); function evenClick() {     //你可以在这里做你想做的事情,比如alert(1);     alert(1);     $(this).unbind('click').bind('click', oddClick);//重新绑定click事件 } function oddClick(

VirtualBox安装CentOS实现鼠标自动切换和复制粘贴

1. 输入命令: cd /media 2. 输入命令: sh VBoxLinuxAdditions.run 3. 可能会出现错误: 解决的办法是依次输入命令: yum install update yum update kernel yum update kernel-devel yum install kernel-headersyum install gcc yum install gcc make 然后再运行: sh VBoxLinuxAdditions.run 就可以了:

html 鼠标悬浮切换图片

首先给标签 设置一个背景图片 <p><p/> p{ background: url("../../images/friend_icon_1.png"); } 这里写你自己路径的图片 接着 hover悬浮事件 p:hover { background: url("../../images/friend_icon_color_1.png");  这里是悬浮要显示的图片, } 其他就不啰嗦了 大概就这样 原文地址:https://www.cnblo