摘要: 当Bar.prototype = new Foo(); 当Bar.prototype=Foo.prototype; 原理:补充。 阅读全文
posted @ 2017-02-08 17:11 Jane&Coding 阅读(193) 评论(0) 推荐(0)
摘要: 结果图: 资源链接: https://github.com/yunap/traceit/ http://dmitrybaranovskiy.github.io/raphael/ 参考: http://www.noupe.com/development/howto-circle-marks-trace 阅读全文
posted @ 2017-01-19 10:35 Jane&Coding 阅读(421) 评论(0) 推荐(0)
摘要: MainWindow.xaml RunningStatusConverter,根据ENDTIME值显示不同结果: MainWindow.xaml.cs,加载测试用数据 DataExample.cs,用于生成测试用数据 App.xaml 结果图: 阅读全文
posted @ 2016-12-19 16:19 Jane&Coding 阅读(260) 评论(0) 推荐(0)
摘要: html&javascript 参考: http://www.jb51.net/article/38578.htm 阅读全文
posted @ 2016-12-13 10:34 Jane&Coding 阅读(206) 评论(0) 推荐(0)
摘要: MainWindow.xaml App.xaml 结果: 阅读全文
posted @ 2016-12-12 10:27 Jane&Coding 阅读(302) 评论(0) 推荐(0)
摘要: MainWindow.xaml App.xaml MainWindow.xaml.cs(为了能够实现窗口拖动,需要实现MouseLeftButtonDown事件) 结果: 阅读全文
posted @ 2016-12-05 16:38 Jane&Coding 阅读(2757) 评论(1) 推荐(0)
摘要: dll引用: 需要将TRSADO.NET.dll和TRSADO_CPP.dll同时拷贝到输出路径下,同时添加TRSADO.NET.dll的引用。 Note:dll有32和64位之分,需要根据不同的项目添加相应dll。 Note: 如果缺少TRSADO_CPP.dll会报错。 连接: 获取一定条件下的 阅读全文
posted @ 2016-11-29 10:57 Jane&Coding 阅读(745) 评论(0) 推荐(0)
摘要: 使用263企业邮箱发送邮件: 阅读全文
posted @ 2016-11-22 15:55 Jane&Coding 阅读(182) 评论(0) 推荐(0)
摘要: 需要注意的是UTF-8无BOM格式的判断。 参考: 代码是参考了一个博客的文章,但找不到链接了。。。 阅读全文
posted @ 2016-11-22 15:53 Jane&Coding 阅读(2266) 评论(0) 推荐(0)
摘要: string s = "test"; //Convert from string to byte[] //byte[] bytes = Convert.FromBase64String(s); byte[] bytes = Encoding.UTF8.GetBytes(s); //Convert f 阅读全文
posted @ 2016-09-05 17:56 Jane&Coding 阅读(340) 评论(0) 推荐(0)