上一页 1 2 3 4 5 6 7 8 9 10 ··· 14 下一页
摘要: 在实际项目中,我们通常会在XAML代码中创建控件的动画效果,但在某一些特殊情况下,需要后台进行动画效果的自定义修改。那么我们就需要用到本节中讲述的相关动画效果自创建知识。在Silverlight中常用的动画创建方式有4种分别为 DoubleAnimation,ColorAnimation,Point... 阅读全文
posted @ 2012-04-01 15:12 liancs 阅读(217) 评论(0) 推荐(0) 编辑
摘要: http://jsfiddle.net/LSRfz/ 阅读全文
posted @ 2012-03-31 18:00 liancs 阅读(107) 评论(0) 推荐(0) 编辑
摘要: http://www.graphspe.com/#/Home 阅读全文
posted @ 2012-03-31 15:36 liancs 阅读(214) 评论(0) 推荐(0) 编辑
摘要: 匹配数值型字符串:^-?([1-9]\\d*\\.?\\d*|0\\.\\d*[1-9]\\d*|0)$ 阅读全文
posted @ 2012-03-23 20:44 liancs 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 使用Analytics类的两个属性,如下 Analytics myAnalytics=new Analytics(); string str1= myAnalytics.AverageProcessorLoad.ToString(); //所有进程占用cpu系数 stri... 阅读全文
posted @ 2012-03-10 13:04 liancs 阅读(154) 评论(0) 推荐(0) 编辑
摘要: Favicon.cc:这是个用于生成通常出现在浏览器状态栏或浏览器标签上的小图标(用于识别一个网站)的工具。完成后只需下载.ico文件并把它拖到Web服务器根目录下即可。很快很方便。http://www.favicon.cc/ 阅读全文
posted @ 2012-03-09 17:34 liancs 阅读(226) 评论(0) 推荐(0) 编辑
摘要: 1、http://tools.jb51.net/tools/json/json_editor.htm2、http://www.jsonlint.com/ 阅读全文
posted @ 2012-03-09 17:23 liancs 阅读(211) 评论(0) 推荐(0) 编辑
摘要: 1、JavaScript compressor and comparison tool(http://compressorrater.thruhere.net/)有许多工具可以帮助你压缩JavaScript代码,但是这个过程比较耗时,并且,对于某个特定的场景来说,很难分析出具体哪个工具表现的最好。这... 阅读全文
posted @ 2012-03-09 17:19 liancs 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 方法一:使用DependencyObject.Dispatcher.BeginInvoke 方法private void btnThread1_Click(object sender, RoutedEventArgs e){ new Thread(() => {this.Dispatcher.Beg... 阅读全文
posted @ 2012-02-25 15:45 liancs 阅读(107) 评论(0) 推荐(0) 编辑
摘要: 将经Base64编码后的位图(png、jpg)字符串重新还原成图片显示:public classPhotoConverter { publicBitmapImage PhotoConvert(string value) { byte[] imageBytes= Convert.FromBase64S... 阅读全文
posted @ 2012-02-23 14:51 liancs 阅读(143) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 14 下一页