码迷,mamicode.com
首页 >  
搜索关键字:delegate invoke winform c#    ( 9315个结果
WinForm使用DataGridView实现类似Excel表格的查找替换
在桌面程序开发过程中我们常常使用DataGridView作为数据展示的表格,在表格中我们可能要对数据进行查找或者替换。 其实要实现这个查找替换的功能并不难,记录下实现过程,不一定是最好的方式,但它有用! 先看demo下效果 1、数据展示 建一个WinForm窗体 GridDataWindow ,放上 ...
分类:Windows程序   时间:2021-07-22 17:39:43    阅读次数:0
windows 文件清理工具
磁盘不够大,备份文件每天都生成,大概半个月就得手工清理一次,基于此,花了点时间写了个简单文件清理工具 采用WinForm 4.6.1实现,页面上需要拖放一个TextBox 控件 1、配置文件: <?xml version="1.0" encoding="utf-8" ?> <configuratio ...
分类:Windows程序   时间:2021-07-14 18:48:26    阅读次数:0
在.Net Core中,把HttpClient换成IHttpClientFactory之使用技巧
前言 关于HttpClient的使用,个人在很多场景都派上用场了,比如在Winform或后台服务中用其调用接口获取和上传数据、微服务中用其进行各服务之间的数据共享等,到目前来看,似乎还没有出现过什么问题,但当我看到官方文档介绍使用方式时,再回顾之前项目的代码,只能说没出问题比较庆幸。 官方文档介绍的 ...
分类:Web程序   时间:2021-07-13 17:42:53    阅读次数:0
C# 通过委托,事件窗口传值
Form2 namespace WindowsFormsApp1 { //定义委托 public delegate void Sum(int x, int y); public partial class Form2 : Form { //定义事件 public event Sum sum; pub ...
分类:Windows程序   时间:2021-07-05 16:39:05    阅读次数:0
winform提取文本(txt)中想要的内容
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.IO;using System.Linq;usi ...
分类:Windows程序   时间:2021-07-02 16:23:21    阅读次数:0
winform简易计算器
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.IO;using System.Linq;usi ...
分类:Windows程序   时间:2021-07-02 16:20:16    阅读次数:0
winform文本内容对比
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u ...
分类:Windows程序   时间:2021-07-02 16:19:59    阅读次数:0
IIFE(匿名函数自调用)
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
retrofit2源码阅读
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
winform 使用Thread.Sleep界面卡死 使用 Application.DoEvents 方法防止UI假死
#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
9315条   1 2 3 4 ... 932 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!