摘要: 百度网盘三方dll ps:. net framework 4.0 client profile 下不行 using Spire.Pdf; using Spire.Pdf.Graphics; using System.Diagnostics; PdfDocument doc = new PdfDocu 阅读全文
posted @ 2019-02-12 14:53 Bridgebug 阅读(570) 评论(0) 推荐(0)
摘要: using System.Windows.Forms; /// <summary> /// 解决加载闪烁,背景透明等问题 /// </summary> protected override CreateParams CreateParams { get { var parms = base.Crea 阅读全文
posted @ 2019-02-12 14:16 Bridgebug 阅读(270) 评论(0) 推荐(0)
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Runtime.InteropServices; using System.Diagnostics; 阅读全文
posted @ 2019-02-12 14:11 Bridgebug 阅读(1370) 评论(0) 推荐(0)
摘要: Point _downPoint; private void button1_MouseDown(object sender, MouseEventArgs e) { _downPoint = new Point(e.X, e.Y); } private void button1_MouseMove 阅读全文
posted @ 2019-02-12 14:00 Bridgebug 阅读(218) 评论(0) 推荐(0)
摘要: 设置 DropDownStyle 为 DropDownList 将 DrawMode 改为 OwnerDrawFixed 添加 DrawItem 事件 样式就变为下面这样,但是只能在列表中选择,而不能手动输入 public class ComBox : ComboBox { public ComBo 阅读全文
posted @ 2019-02-12 13:49 Bridgebug 阅读(2531) 评论(0) 推荐(0)