using System;using System.Collections.Generic;using
System.Linq;using System.Text;using System.Windows.Forms;namespace Common{ ///
/// DataGrid...
using System;using System.Collections.Generic;using
System.Linq;using System.Text;using System.Windows.Forms;namespace Common{ ///
/// 列表视图操作类 ...
分类:
其他好文 时间:
2014-05-08 19:30:25
阅读次数:
337
using System;using System.Collections.Generic;using
System.Linq;using System.Text;using System.Windows.Forms;namespace Common{ ///
/// 复选框操作类 ...
分类:
其他好文 时间:
2014-05-07 20:22:28
阅读次数:
345
一、水平居中 1、行内元素的水平居中方法
给父元素设置一个text-align:centent。 2、确定宽度的块级元素水平居中 设置外边距,margin:0auto; 3、负外边距
创建一个包含居中元素的容器,然后将...
分类:
Web程序 时间:
2014-05-07 17:26:48
阅读次数:
496
之前没弄明白ComboBox还可以这样用。先建一个ComboBox子项类,然后可以获取该项类做一些判断,关键是要重写ToString()方法。 public
class ComboItem { public string text; public string...
分类:
其他好文 时间:
2014-05-07 17:12:20
阅读次数:
333
水平居中1、使用text-align实现居中将该属性值设置为center,这是文本居中,但它却能兼容大多数浏览器,所以在某些情况下也自然必不可少。2、负外边距首先,创建一个包含居中元素的容器,然后将其绝对定位于相对页面左边边缘50%的位置。这样,该容器的左外边距将从页面50%宽度的位置开始算起。然后...
分类:
Web程序 时间:
2014-05-07 13:52:26
阅读次数:
322
这个问题是操作系统日期格式不符所引起的,请更改操作系统日期格式:
操作方式:系统开始菜单-设置-控制面板-日期、时间、语言或区域设置-更改数字、日期和时间的格式-区域选择-标准和格式自定义,在此选择中,请更改如下: 1:时间
时间格式:...
分类:
其他好文 时间:
2014-05-07 10:45:42
阅读次数:
308
1 using System; 2 using System.Collections.Generic;
3 using System.Linq; 4 using System.Text; 5 using System.Threading; 6 7 8
namespace Synchroniza...
分类:
其他好文 时间:
2014-05-07 02:18:18
阅读次数:
287
1. 强制不换行,并且多行文字溢出显示省略号.ellips{white-space:nowrap;
overflow:hidden;
text-overflow:ellipsis;}.ellips_line2,.ellips_line3{display:-webkit-box;
-webkit-bo...
分类:
Web程序 时间:
2014-05-07 01:16:15
阅读次数:
421
【使用class-dump】
对于未加壳的Mach-O文件,class-dump可以从Mach-O的section中还原出objc代码的头文件。下面做一些关键演示,以及对关键问题进行说明。
1、标准用法:-H -O dirname。 -H将解析出的头文件写成文件。-O dirname指...
分类:
其他好文 时间:
2014-05-07 01:01:23
阅读次数:
376