码迷,mamicode.com
首页 >  
搜索关键字:expression    ( 3928个结果
遍历分区大小
Get-WmiObject -Class Win32_LogicalDisk -Filter "DriveType=3" | Format-Table deviceid, @{Label="free(GB)"; Expression={($_.freespace/1GB).tostring("f1....
分类:其他好文   时间:2014-08-08 12:07:55    阅读次数:238
[转]【全面解禁!真正的Expression Blend实战开发技巧】第八章 FluidMoveBehavior完全解析之一漂浮移动
好久没更新博客了,今天如果没急事,准备连发三篇,完全讲解Blend最牛的元素-“FluidMoveBehavior”。我向大家保证这三章一定非常精彩,不看你肯定后悔。我相信这三篇文章发表后,国内很多silverlight和wpf作品将充满各种飞出,漂浮的酷炫效果,以及让元素平滑运动的滚动条。你的客户...
分类:移动开发   时间:2014-08-07 13:00:39    阅读次数:509
A的href和onclick
在Javascript中void是一个操作符,该操作符指定要计算一个表达式但是不返回值。void 操作符用法格式如下:1. javascript:void (expression)2. javascript:void expressionexpression 是一个要计算的 Javascript 标...
分类:其他好文   时间:2014-08-07 12:48:29    阅读次数:243
[转]【全面解禁!真正的Expression Blend实战开发技巧】第六章 认识ListBox
反反复复考虑后,准备把这一章的切入点瞄准ListBox。并用了一个看起来有点别扭的标题“认识ListBox",许多人看到这里就不爱看了,即使是大学里用winform的学生也会说ListBox我看他好几年了。但我想说,在实际项目开发中,界面元素除了Button,另一个使用率最高的就是ListBox,你...
分类:其他好文   时间:2014-08-07 12:14:09    阅读次数:251
返回类型和return语句
return语句终止当前正在执行的函数并将控制权返回到调用该函数的地方。return语句有两种形式:return;return expression;无返回值函数没有返回值的return语句只能用在返回类型是void的函数中。返回void的函数不要求非得有return语句,因为在这类函数的最后一句后...
分类:其他好文   时间:2014-08-06 21:43:52    阅读次数:420
CTE初识
微软从SQl2005起引入了CTE(Common Table Expression)以强化T-SQL。这是一个类似于非持久视图的好东西。正常的SQL语句:select * from person.StateProvince where CountryRegionCode in (select Cou...
分类:其他好文   时间:2014-08-06 17:23:41    阅读次数:233
Regular Expression Matching leetcode java
题目:Implement regular expression matching with support for '.' and '*'.'.' Matches any single character.'*' Matches zero or more of the preceding elem....
分类:编程语言   时间:2014-08-06 04:11:20    阅读次数:429
jQuery()参数
jQuery的一个别名是$,这个没有什么疑问。$("div"),获取所有的div元素,没有问题;$("div", $("div .someClass")),这是一种更为普遍,但是却被我遗漏的方法;jQuery(expression,[context])expression,作为选择器;context...
分类:Web程序   时间:2014-08-06 01:37:10    阅读次数:247
[leecode]Evaluate Reverse Polish Notation
Evaluate Reverse Polish NotationEvaluate the value of an arithmetic expression inReverse Polish Notation.Valid operators are+,-,*,/. Each operand may ...
分类:其他好文   时间:2014-08-05 10:57:19    阅读次数:184
IE 固定定位; li中有块元素的offset问题
body{ background-image:url(about:blank); background-attachment:fixed; /*ie 防抖动*/}.fix_to_top { _position:absolute; _top:expression(eval(document...
分类:其他好文   时间:2014-08-05 09:28:58    阅读次数:448
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!