1、String转换成Color Color color = (Color)ColorConverter.ConvertFromString(string);2、String转换成Brush BrushConverter brushConverter = new BrushConverter(); ...
分类:
其他好文 时间:
2014-07-01 21:02:45
阅读次数:
144
原理:最外层放水平平铺的背景,第二层放左边,第三层放右边,注意这个做法背景图不能透明结构: 样式:.module-title { height:33px; background: url(../images/more-title.png) 0 -33px repeat-x; text-inden.....
分类:
Web程序 时间:
2014-07-01 18:23:28
阅读次数:
235
background: -moz-linear-gradient(top, #8fa1ff, #3757fa); /* Firefox */background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ff4f0...
分类:
Web程序 时间:
2014-07-01 17:55:21
阅读次数:
282
原文:几个常用的CSS3样式代码以及不兼容的解决办法border-radius实现圆角效果1 CSS3代码:2 3 -webkit-border-radius:10px;4 -moz-border-radius:10px;5 border-radius:10px;6 background-color...
分类:
Web程序 时间:
2014-07-01 17:01:55
阅读次数:
361
以前写的一篇笔记,偶尔翻出来了,放在这里做个纪念
Linux 下IO端口编程访问
这里记录的方法是在用户态访问IO端口,不涉及驱动程序的编写。
首先要包含头文件 /usr/include/asm/io.h
ioperm()
在 unistd.h 中声明。用来打开对IO端口的访问权限,要求程序执行时必须有root 权限。只可以打开0x00到0x3ff 这一地址段的IO端口。
iop...
分类:
系统相关 时间:
2014-07-01 11:03:08
阅读次数:
368
继上一篇云平台完成SCCM部署篇之后,SCCM篇正式开始,今天将开始介绍SCCM如何为域内机器推送软件并静默安装(紫色为完成实施,红色为实施中):1、按照上一章一样添加需要部署的程序,然后点击上端部署:2、选择集合为之前创建的集合:3、由于已经分发内容,这一页就保持默认即..
分类:
其他好文 时间:
2014-07-01 09:51:37
阅读次数:
339
(RedHat10gOracle环境)1、配置OracleClusterSynchronization(CSS)要想使用ASM,必须先配置并启动CSS[root@redhat10g~]#cd/u01/app/oracle/product/10.2.0/db_1/bin[root@redhat10gbin]#./localconfigadd2、配置AutomaticStorageManagement(ASM)实例参数[oracle@aix201~]$..
分类:
其他好文 时间:
2014-07-01 09:50:22
阅读次数:
231
疯狂的暑假学习之 汇编入门学习笔记 (一)
参考:《汇编语言》 王爽 第一,二章
一、基础知识
1. 用汇编语言编写程序的工作过程
汇编本质就是为了方便程序员,把二进制代码用汇编指令来表示
汇编指令----------------> 编译器 ---------------->机器码----------------> 计算机执行
mov ax, bx...
分类:
其他好文 时间:
2014-07-01 08:31:58
阅读次数:
265
直接上代码
ZeroClipboard Test
.line {
margin-bottom: 20px;
}
/* 复制提示 */
.copy-tips {
position: fixed;
z-index: 9999;
bottom: 50%;
left: 50%;
margin: 0 0 -20px -80px;
background-color: rgba(0,...
分类:
其他好文 时间:
2014-07-01 07:04:53
阅读次数:
245
以前写的一篇笔记,偶尔翻出来了,放在这里做个纪念
Linux 下IO端口编程访问
这里记录的方法是在用户态访问IO端口,不涉及驱动程序的编写。
首先要包含头文件 /usr/include/asm/io.h
ioperm()
在 unistd.h 中声明。用来打开对IO端口的访问权限,要求程序执行时必须有root 权限。只可以打开0x00到0x3ff 这一地址段的IO端口。
iop...
分类:
系统相关 时间:
2014-06-30 16:30:54
阅读次数:
302