winfrom
、极客飞鹏の
擅长ASP.NET MVC Winform HTML CSS Vue.js 微信小程序开发
展开
-
C# winfrom datagridview 添加行数
private void dataGridView_djmx_RowPostPaint(object sender, DataGridViewRowPostPaintEventArgs e) { //自动编号,与数据无关 Rectangle rectangle = new Rectangle(e.RowBounds.Location.X, e.RowBounds.Location.Y, ...原创 2020-06-17 16:35:38 · 780 阅读 · 0 评论 -
C# Winfom 多线程
停止 多线程 private void stop() { EnableToolsEvent(); isConfigModify = false; can_stop = true; if (thread != null && thread.IsAliv原创 2017-03-16 09:52:38 · 312 阅读 · 0 评论 -
C# winform 退出程序方法
private void Form1_FormClosing(object sender, FormClosingEventArgs e) { try { this.Dispose(); Application.Exit();原创 2017-03-16 09:51:36 · 475 阅读 · 0 评论 -
winform 添加 esc 键退出窗体
protected override bool ProcessCmdKey(ref System.Windows.Forms.Message msg, System.Windows.Forms.Keys keyData) { int WM_KEYDOWN = 256; int WM_SYSKEYDOWN = 260原创 2017-03-16 09:49:48 · 3425 阅读 · 0 评论 -
Winform 多线程查询数据
1.ThreadPool.QueueUserWorkItem(search, null);2. private void search(object c) { //查询方法 // 更新界面 this.BeginInvoke(new updateui(upui)); }3.private voi原创 2017-03-16 09:25:06 · 1707 阅读 · 0 评论 -
winform程序限制多开以及FromMian 为主线程思路
/// /// 应用程序的主入口点。 /// [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatib原创 2017-03-16 09:20:09 · 535 阅读 · 0 评论 -
C# winfrom 批量高效十几万数据导出EXCEL
#region 导出EXCELprivate void ExportExcels(List<DJMXView> djmxViewList){SaveFileDialog saveDialog = new SaveFileDialog();saveDialog.DefaultExt = "xlsx";saveDialog.Filter = "Excel文件|*.xlsx";...原创 2020-06-17 16:11:46 · 783 阅读 · 0 评论