摘要: 1.新建一个类库 2.添加用户控件 3.在用户窗体写代码 点击查看代码 namespace MyControls { public partial class LED : UserControl { public LED() { InitializeComponent(); //添加事件 this. 阅读全文
posted @ 2025-06-21 13:56 小卡拉咪 阅读(102) 评论(0) 推荐(0)
摘要: 点击查看代码 private void button1_Click(object sender, EventArgs e) { DialogResult result = MessageBox.Show("是否退出应用程序", "提示", MessageBoxButtons.OKCancel, Me 阅读全文
posted @ 2025-06-19 23:07 小卡拉咪 阅读(37) 评论(0) 推荐(0)
摘要: ![](https://img2024.cnblogs.com/blog/3550122/202412/3550122-20241222142657274-1155498874.png) ![](https://img2024.cnblogs.com/blog/3550122/202412/3550122-20241222142706330-1311098044.png) 阅读全文
posted @ 2024-12-22 14:27 小卡拉咪 阅读(54) 评论(0) 推荐(0)
摘要: 1.问题描述 当DataGridView频繁更新数据源时,可能会导致界面闪烁、性能下降等问题。这是因为每次更新数据源时,DataGridView都需要重新绘制和绑定数据,这是一个相对耗时的过程。 2.解决方案 使用BindingList代替普通List作为数据源(适用于简单数据更新) Binding 阅读全文
posted @ 2024-12-09 16:19 小卡拉咪 阅读(94) 评论(0) 推荐(0)
摘要: 1:引用命名空间 using System.Runtime.InteropServices; 2:想要拖动窗体的控件绑定MouseDown事件 点击查看代码 //窗体移动 [DllImport("user32.dll")] public static extern bool ReleaseCaptu 阅读全文
posted @ 2024-12-07 14:21 小卡拉咪 阅读(39) 评论(0) 推荐(0)
摘要: 1.用Modbus工具模拟PLC 2.创建一个实体类 点击查看代码 internal class Data : INotifyPropertyChanged { ushort[] ushorts = new ushort[10]; public ushort D0 { get => ushorts[ 阅读全文
posted @ 2024-12-02 16:05 小卡拉咪 阅读(135) 评论(0) 推荐(0)
摘要: ` using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using Syst 阅读全文
posted @ 2024-11-21 22:38 小卡拉咪 阅读(40) 评论(0) 推荐(0)
摘要: ` using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using Syst 阅读全文
posted @ 2024-11-21 22:34 小卡拉咪 阅读(17) 评论(0) 推荐(0)
摘要: 1:主窗体代码 点击查看代码 //实例化登录窗体 FrmLogin frmLogin = new FrmLogin(); //读取登录窗体的返回结果 DialogResult dialogResult = frmLogin.ShowDialog(); //判断登录窗体的返回结果 if (dialog 阅读全文
posted @ 2024-11-12 22:35 小卡拉咪 阅读(101) 评论(0) 推荐(0)
摘要: 1.Winform窗体界面 2.后台代码 点击查看代码 using Modbus.Device; using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using 阅读全文
posted @ 2024-11-12 14:05 小卡拉咪 阅读(429) 评论(0) 推荐(0)