摘要: 阅读全文
posted @ 2014-12-28 19:41 talentzemin 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 原因:当input仅仅包含父元素,父元素拥有margin属性时,IE7的input就会错误的继承margin属性。解决办法:给input元素外面套一个span,label这样的内联元素,这样就会消除bug。原理:input父元素是内联元素,就不会继承margin了。 阅读全文
posted @ 2014-12-28 19:38 talentzemin 阅读(294) 评论(0) 推荐(0) 编辑
摘要: DataView dv =dataTable.DefaultView;DataTable dt = dv.ToTable(true, "Name"); 阅读全文
posted @ 2014-12-28 19:35 talentzemin 阅读(129) 评论(0) 推荐(0) 编辑
摘要: css代码如下:vertical-align:middle; margin-top:-2px; margin-bottom:1px;原文链接:复选框单选框与文字对齐问题的研究与解决 阅读全文
posted @ 2014-12-20 17:13 talentzemin 阅读(203) 评论(0) 推荐(0) 编辑
摘要: 模式:每一个模式描述了一个在我们周围不断重复发生的问题,以及该问题的解决方案的核心。一:设计模式的核心原则是:"开-闭"原则(Open-ClosedPrinciple缩写:OCP),一切的一切都是围绕着"开-闭"原则展开的开闭原则:说软件实体(类,模块,函数等)应该可以扩展,但是不可以修改二:依赖倒... 阅读全文
posted @ 2014-10-22 20:19 talentzemin 阅读(130) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace Delegate{ //1.定义委托 publ... 阅读全文
posted @ 2014-10-20 21:41 talentzemin 阅读(197) 评论(0) 推荐(0) 编辑
摘要: 1.在XAML中设置DataGrid的ItemsSource={Binding}2.codebehind中通过dataGrid.DataContext = list来设置DataContext。 阅读全文
posted @ 2014-10-10 10:23 talentzemin 阅读(133) 评论(0) 推荐(0) 编辑
摘要: /// ///读取xml的方法 /// /// public List GetXml() { List list = new List(); XmlDocument... 阅读全文
posted @ 2014-09-28 12:07 talentzemin 阅读(199) 评论(0) 推荐(0) 编辑
摘要: 1、不管有木有出现异常,finally块中代码都会执行;2、当try和catch中有return时,finally仍然会执行;3、finally是在return表达式运算后前执行的,所以函数返回值是在finally执行前确定的;4、finally中最好不要包含return,否则程序会提前退出,返回值... 阅读全文
posted @ 2014-09-28 12:02 talentzemin 阅读(178) 评论(0) 推荐(0) 编辑
摘要: .NET1.const和readonly的区别?2.静态类和实例区别?什么时候使用?3.接口和抽象类的区别?什么时候使用?4.类和结构体的区别?什么时候使用?5.文件操作6.序列化7.Object有哪些方法?8.Hashtable和dictionary的区别?什么时候使用?9.String和srin... 阅读全文
posted @ 2014-09-22 17:41 talentzemin 阅读(316) 评论(0) 推荐(0) 编辑