上一页 1 2 3 4 5 6 7 8 9 ··· 19 下一页
摘要: https://www.cnblogs.com/luomingui/archive/2010/03/03/1677718.html https://cloud.tencent.com/developer/article/1334177 阅读全文
posted @ 2020-04-03 13:59 Kyle0418 阅读(150) 评论(0) 推荐(1) 编辑
摘要: public Form1() { InitializeComponent(); backgroundWorker1.DoWork += BackgroundWorker1_DoWork; backgroundWorker1.RunWorkerCompleted += BackgroundWorker 阅读全文
posted @ 2020-03-30 16:30 Kyle0418 阅读(255) 评论(0) 推荐(1) 编辑
摘要: protected override void OnPaint(System.Windows.Forms.PaintEventArgs e) { Pen pen = new Pen(drawLineColor); pen.Width = 2; // 绘制一条水平分割线 e.Graphics.Draw 阅读全文
posted @ 2019-09-25 13:13 Kyle0418 阅读(425) 评论(1) 推荐(0) 编辑
摘要: [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); _hookID = SetHook(_proc); For 阅读全文
posted @ 2019-08-22 10:43 Kyle0418 阅读(319) 评论(1) 推荐(1) 编辑
摘要: 测试结果: 阅读全文
posted @ 2019-07-23 16:58 Kyle0418 阅读(400) 评论(0) 推荐(1) 编辑
摘要: // 首先开启smtp服务 try { MailMessage message = new MailMessage(); SmtpClient smtp = new SmtpClient(); message.From = new MailAddress("from@domain.com"); me 阅读全文
posted @ 2019-07-03 10:54 Kyle0418 阅读(127) 评论(0) 推荐(0) 编辑
摘要: public partial class Form1 : Form { public Form1() { InitializeComponent(); PanelEnhanced panelEnhanced = new PanelEnhanced(); this.Controls.Add(panel 阅读全文
posted @ 2019-05-27 15:50 Kyle0418 阅读(250) 评论(0) 推荐(0) 编辑
摘要: 建议使用dll减少闪烁, 处理WM_NCHITTEST消息, 阅读全文
posted @ 2019-05-27 14:39 Kyle0418 阅读(384) 评论(0) 推荐(0) 编辑
摘要: 基本用法(CRUD) 1.插入: 2.修改: 3.查询: 4.删除: 获取主键: 阅读全文
posted @ 2019-05-22 14:13 Kyle0418 阅读(167) 评论(0) 推荐(0) 编辑
摘要: chart1.Titles.Add("Line Chart"); chart1.ChartAreas[0].Axes[0].MajorGrid.Enabled = false; chart1.ChartAreas[0].Axes[1].MajorGrid.Enabled = false;this.d 阅读全文
posted @ 2019-05-21 09:57 Kyle0418 阅读(924) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 19 下一页