在桌面程序开发过程中我们常常使用DataGridView作为数据展示的表格,在表格中我们可能要对数据进行查找或者替换。 其实要实现这个查找替换的功能并不难,记录下实现过程,不一定是最好的方式,但它有用! 先看demo下效果 1、数据展示 建一个WinForm窗体 GridDataWindow ,放上 ...
磁盘不够大,备份文件每天都生成,大概半个月就得手工清理一次,基于此,花了点时间写了个简单文件清理工具 采用WinForm 4.6.1实现,页面上需要拖放一个TextBox 控件 1、配置文件: <?xml version="1.0" encoding="utf-8" ?> <configuratio ...
前言 关于HttpClient的使用,个人在很多场景都派上用场了,比如在Winform或后台服务中用其调用接口获取和上传数据、微服务中用其进行各服务之间的数据共享等,到目前来看,似乎还没有出现过什么问题,但当我看到官方文档介绍使用方式时,再回顾之前项目的代码,只能说没出问题比较庆幸。 官方文档介绍的 ...
分类:
Web程序 时间:
2021-07-13 17:42:53
阅读次数:
0
Form2 namespace WindowsFormsApp1 { //定义委托 public delegate void Sum(int x, int y); public partial class Form2 : Form { //定义事件 public event Sum sum; pub ...
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.IO;using System.Linq;usi ...
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.IO;using System.Linq;usi ...
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u ...
created on 21/03/04 ##1、理解 全称:Immediately-Invoked Function Expression ##2、作用 隐藏实现 不会污染外部(全局)命名空间 用它编写js模块 (function(){ //匿名函数自调用 var a = 3; console.lo ...
分类:
其他好文 时间:
2021-07-01 17:25:48
阅读次数:
0
1.retrofit.create 创建retrofit 2.loadServiceMethod(method).invoke(args) 动态代理method,并在repos.enqueue 中调用invoke 3.ServiceMethod.parseAnnotations(this, meth ...
分类:
其他好文 时间:
2021-07-01 17:14:51
阅读次数:
0
#region 毫秒延时 界面不会卡死 public static void Delay(int mm) { DateTime current = DateTime.Now; while (current.AddMilliseconds(mm) > DateTime.Now) { Applicati ...
分类:
移动开发 时间:
2021-07-01 16:29:40
阅读次数:
0