在桌面程序开发过程中我们常常使用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
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 ...
#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
https://www.cnblogs.com/jizhongfong/p/4384689.html var bind = new Binding("Enabled", OrderViewModel.Instance.Commands.ThreadManager, "IsRunning"); bin ...
有时候多个相同控件的事件若一一处理比较麻烦,而且影响代码美观,这时若在一个统一的方法里处理这些事件是个比较好的选择。 以winform上的三个button为例来说明我的处理方法。 1,将三个button的click事件绑定到一个事件处理方法上: this.button1.Click += new E ...
分类:
其他好文 时间:
2021-06-24 17:30:43
阅读次数:
0
1、设置 Ico 图标为 [资源文件] 项目名=>右键=>属性,在选项卡中选择"资源" 选择 "添加资源"=>"添加现有文件" 在弹出的选择文件窗口,找到Icon 图标(注意图标名) 图标名称(股票),将作为在程序中调用的唯一名称。 2、设置 图标 为窗体默认图标 3、设置 图标 为 程序默认图标 ...