⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 58.htm

📁 好书啊!很好哦
💻 HTM
字号:
<!-- saved from url=(0022)http://internet.e-mail -->
<html>
<head>
<title>交换鼠标的左右键                                  </title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" href="inc.css">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#000000" vlink="195434" alink="195434">

<table width="621" border="0" cellspacing="0" cellpadding="0" align="center">
  <tr>
      <td width="621"><a href="http://www.CoDelphi.com"><img src="images/logo.gif" border="0" width="153" height="60"><img src="images/bigbanner.gif" border="0" width="468" height="60"></a></td>
    </tr>
  </table><br>
<br>
<table width="621" border="0" cellspacing="0" cellpadding="0" align="center">
  <tr> 
    <td align="left" valign="top" class="font9" height="155"> 
      <div align="center" class="btitle">交换鼠标的左右键                                  <br>
        <br>
      </div>
      <div align="center"><strong>CoDelphi.com                                      </strong></div>
       
      <b><br>
       摘 要</b>:交换鼠标的左右键                                  <br>
      <b> 关键字</b>:鼠标 交换 左键                                     <br>
      <b> 类 别</b>:API                                                
      <hr size="1" width="100%">
      <span class="content">    为了改变鼠标左键,需要调用API函数SwapMouseButton。这样可以不用通知控制面板而改变鼠标左键。我们需要修改注册表。以下代码表明,先读注册表,决定鼠标左键开关的当前值,并通过写注册表运行SwapMouseButton函数。<Br><Br>uses Windows, Registry ;<Br><Br>const<Br>  LeftButton  = '0' ;<Br>  RightButton = '1' ;<Br>  VaueToRead  = 'SwapMouseButtons' ;<Br>begin<Br>  with TRegistry.Create do<Br>  begin<Br>    try<Br>      if OpenKey('Control Panel\Mouse',False) then<Br>      begin<Br>        if ValueExists(VaueToRead) then<Br>          if ReadString(VaueToRead) = LeftButton then<Br>          begin<Br>            SwapMouseButton(True) ;<Br>            WriteString(VaueToRead,RightButton) ;<Br>          end else<Br>          begin<Br>            SwapMouseButton(False) ;<Br>            WriteString(VaueToRead,LeftButton) ;<Br>          end ;<Br>        CloseKey ;<Br>      end ;<Br>    finally<Br>      Free ;<Br>    end ;<Br>  end ;<Br>end.<Br><Br></span> 
      <table border="0" cellspacing="0" cellpadding="1" class="font9" align="center" width="100%">
        <tr align="left" valign="middle" bgcolor="195434"> 
          <td height="1"></td>
        </tr>
      </table>
     
    </td>
  </tr>
  <tr> 
    <td bgcolor="#C9C9C6" height="2"></td>
  </tr>
</table>
<div align="center"><br>
  中文开发在线<a href="http://www.codelphi.com" target="_blank">www.codelphi.com</a>授权使用。
</div>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -