Windows开发
使用的API原型是 BOOL SystemParametersinfo(UINT uiAction,UINT uiParam,PVOID pvParam,UINT fWinlni); 在C#中定义如下: 1 /// <summary> 2 /// 查询或设置系统级参数 3 /// </summary ...
在 Windows 中工作时,利用快捷键代替鼠标。可以利用键盘快捷键打开、关闭和导航“开始”菜单、桌面、菜单、对话框以及网页。键盘还可以让您更简单地与计算机交互。 单击一个标题或按 TAB 键可以突出显示这个标题,然后按 ENTER 键。 常规键盘快捷键 请按 目的 Ctrl + C 复制。 Ctr ...
开始菜单中的“运行”(Win+R)是通向程序的快捷途径,输入特定的命令后,即可快速的打开Windows的大部分程序,熟练的运用它,将给我们的操作带来诸多便捷。 winver 检查Windows版本 wmimgmt.msc 打开Windows管理体系结构(wmi) wupdmgr Windows更新程 ...
Indy 10的安装和老版本的卸载 Indy 10下载地址: http://www.indyproject.org/downloads/10/indy10.0.52_source.zip Indy 10 安装步骤 1、解压压缩包。 2、打开\System\IndySystem70.dpk,点Comp ...
<system.web> <compilation debug="true" targetFramework="4.5" /> <!--<httpRuntime targetFramework="4.5" />--> <httpRuntime targetFramework="4.5" maxReq ...
创建对象代码如下: 而在FilterInfo的定义中属性public Relationship Relationship{get;set;}=Relationship.And; 经过分步调试,发现该对象的属性值:Value值是"朱6",而Relationship的值是 Relationship.Or ...
1.系统中安装VirtualEnv 在安装完Python后,自带的有pip或easy_install工具,可进行VirtualEnv的安装 pip install virtualenv 2、构造项目,为项目安装虚拟环境 比如我在F:\Python Program 目录下创建一个项目myproject ...
private void RadComboBox_PreviewKeyUp(object sender, KeyEventArgs e) { try { var obj = (RadComboBox)sender; if (!e.Key.Equals(Key.Enter) && !e.Key.Equ ...
发现这个开源库,可以Hook Delphi的底层实现。快来看看:The Delphi Detours Library is a library allowing you to hook Delphi and Windows API functions. It provides an easy way ...