原文:WPF PasswordBox不支持绑定解决方法 PasswordBox的Password属性因为安全原因不支持直接绑定,可以使用依赖属性实现.直接插入代码 public class PasswordBoxHelper { public static readonly DependencyProperty PasswordProperty = DependencyProperty.RegisterAttached("Password", typeof(string), typeo…
原文地址:https://www.cnblogs.com/wxjing67/p/3935717.html PasswordBox的Password属性因为安全原因不支持直接绑定,可以使用依赖属性实现.直接插入代码 public class PasswordBoxHelper { public static readonly DependencyProperty PasswordProperty = DependencyProperty.RegisterAttached("Password&quo…
max-height,min-height在IE下不支持的解决方法 max-width:160px; max-height:160px; _width:expression(this.width > 160 ? "160px": true); /* IE6 */ _height:expression(this.height > 160 ? "160px": true); /* IE6 */…
兼容firefox,ie,谷歌,阻止浏览器冒泡事件,Firefox不支持event解决方法 // 获取事件function getEvent(){ if(window.event) {return window.event;} func=getEvent.caller; while(func!=null){ var arg0=func.arguments[0]; if(arg0){ if((arg0.constructor==Event || arg0.constructor ==MouseEv…
最近在搞centos,遇见的一些问题,记录一下 首先是安装问题 安装过程参考http://www.cnblogs.com/seesea125/archive/2012/02/25/2368255.html 见下图 enter确认的话,重启后会一直卡在centos页面 解决方法就是: 在安装过程第一步中将 Install system with basic video driver 改为 Install or upgrade an existing system即可…
IE 中可以直接使用event 对象,而FF 中则不可以,解决方法之一如下: var theEvent = window.event || arguments.callee.caller.arguments[0]; 第二种是将event 作为参数来传递: function xxx(e){var theEvent = window.event || e;} srcElement 和target 在IE 中srcElement 表示产生事件的源,比如是哪个按钮触发的onclick 事件,FF 中则是…
最近再一次项目中发现 不刷新页面的情况下使用on()方法绑定事件会出现重复执行的问题,意思就是说点击一次会绑定一次...点击n次会绑定n次,执行起来是以你绑定的次数为准,绑定了n次就会执行n次 解决办法 在每次进行on()绑定之前先使用off()方法解除下绑定 例: //解除绑定事件 $('#aa').off('click'); //添加绑定事件 $('#aaa').on('click',dianjishijian); 完美解决重复绑定事件问题.…
今天要修改一个老DLL文件,安装了vb6,用起来很不爽. VB6编辑器 和 VBA编辑器 (Office 中的VB编辑器)都不支持鼠标滚动. 但 MS 已经提供了补丁http://download.microsoft.com/download/e/f/b/efb39198-7c59-4ace-a5c4-8f0f88e00d34/vb6mousewheel.exe. 微软这个不好下载,备用的 http://ishare.iask.sina.com.cn/f/25099135.html 下载补丁后,…
最近在IIS8中发布WCF服务应用时,发现IIS8不支持WCF服务svc请求,后来发现IIS8缺少对WCF服务的Managed Handler,按照以下步骤添加后,IIS8即支持WCF服务. 1. 首先添加MIME类型 扩展名“.svc”,MIME类型 “application/octet-stream” 2. 然后在“Handler Mappings”中添加Managed Handler 请求路径: *.svc 类型: System.ServiceModel.Activation.HttpHa…
lnmp环境配置: 3处改动地方---->排查过程: 从phpinfo.php中查找php.ini-----所在位置 /usr/local/php/etc/php.ini 1.display_errors = On; //由off改为on 2.session.save_path = "/tmp" //开启 sesssion tmp~~~~ 123 vim enable-php-pathinfo.conf -----find---->fastcgi.conf 124 vim…