2020年4月9日

DataGridView 实现,折叠的Tree效果

摘要: 1、效果 2、代码 public void FrmMain(object sender,EventArgs e) { //首先生成数据 this.GenerateData(); //然后生成列 this.GenerateClo(); //显示数据 this.ShowData(this.treeLis 阅读全文
posted @ 2020-04-09 23:06 张行行 阅读(1219) 评论(0) 推荐(0) 编辑
2019年6月3日

DEV 总结

摘要: 转自:https://www.cnblogs.com/yuerdongni/archive/2012/09/08/2676753.html 1、 如何解决单击记录整行选中的问题 View->OptionsBehavior->EditorShowMode 设置为:Click 2、 如何新增一条记录 ( 阅读全文
posted @ 2019-06-03 23:07 张行行 阅读(303) 评论(0) 推荐(0) 编辑
2019年5月7日

EWS:邮箱的一个开放的接口服务

摘要: https://3gstudent.github.io/3gstudent.github.io/Exchange-Web-Service(EWS)%E5%BC%80%E5%8F%91%E6%8C%87%E5%8D%97/ EWS是邮箱的一个开放的接口服务,可以取到邮箱的各种信息,邮件收发、会议、日期 阅读全文
posted @ 2019-05-07 14:14 张行行 阅读(3633) 评论(2) 推荐(0) 编辑
2019年4月19日

socket,模拟服务器、客户端通信

摘要: 服务器代码: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.IO;using System.L 阅读全文
posted @ 2019-04-19 22:31 张行行 阅读(658) 评论(1) 推荐(0) 编辑
2019年3月21日

在ASP.NET Core中构建路由的5种方法

摘要: 原文链接 :https://stormpath.com/blog/routing-in-asp-net-core 在ASP.NET Core中构建路由的5种方法 在ASP.NET Core中构建路由的5种方法 原文链接 :https://stormpath.com/blog/routing-in-a 阅读全文
posted @ 2019-03-21 11:17 张行行 阅读(481) 评论(1) 推荐(0) 编辑
2019年3月16日

扩展方法、泛型、委托,的小案例

摘要: 1、现有一个字符串集合,集合中存的是数字,把大于等于2的数值,打印出来,需要用到扩展方法、泛型、委托 class Projram{ static void Main(String[] args){ //定义一个集合, List<string> list = new List<string>{"1", 阅读全文
posted @ 2019-03-16 21:46 张行行 阅读(518) 评论(0) 推荐(0) 编辑
2019年3月14日

操作Work、Excel、PDF

摘要: 操作Work、Excel、PDF 1、NPOI插件 namespace XBLRDiff.BLL.Excel namespace XBLRDiff.BLL.Excel { public class ExcelImport:IDisposable { public void Dispose() { D 阅读全文
posted @ 2019-03-14 15:40 张行行 阅读(175) 评论(0) 推荐(0) 编辑

d3实现家族树

摘要: 1、 jQuery和CSS3支持移动手机的DOM元素移动和缩放插件:panzoom 2、拖动:jqueryUI-Draggable、touchpunch 3、图表:echart、heightChart、d3 <template> <div class="topdivall"> <div class= 阅读全文
posted @ 2019-03-14 15:36 张行行 阅读(1131) 评论(1) 推荐(1) 编辑

大数据时代的图表可视化利器——highcharts,D3和百度的echarts

摘要: 大数据时代的图表可视化利器——highcharts,D3和百度的echarts https://blog.csdn.net/minidrupal/article/details/42153941 还记得阿里巴巴那个令人澎湃激情的双十一吗?还记得淘宝生动形象地把你的的消费历程一一地展示给你看吗?还记得 阅读全文
posted @ 2019-03-14 15:32 张行行 阅读(427) 评论(0) 推荐(0) 编辑

函数防抖与节流

摘要: 函数防抖与节流 underscore.js提供了很多很有用的函数,今天想说说其中的两个。这两个函数都用于限制函数的执行 debounce 在解释这个函数前,我们先从一个例子看下这个函数的使用场景。假设我们网站有个搜索框,用户输入文本我们会自动联想匹配出一些结果供用户选择。我们可能首先想到的做法就是监 阅读全文
posted @ 2019-03-14 15:30 张行行 阅读(327) 评论(0) 推荐(0) 编辑