摘要:
获取程序集方法1: Assembly ass1 = Assembly.Load("InterfaceAndPolymorphism");//参数:程序集的长格式,就是右键 中的 程序集名称 获取程序集方法2: Assembly ass2 = Assembly.LoadFile(System.IO.D 阅读全文
摘要:
1,在网上搜索到的一般是这种通用的方法,这个方法速度太慢了,代码如下 private void ExportExcel(string fileName, DataGridView myDGV) { string saveFileName = ""; SaveFileDialog saveDialog 阅读全文
摘要:
1,添加行号效果展示,根据某列的值改变颜色提示效果展示 2,界面UI设置 行标题单元格样式要与默认单元格样式设置一致。 3,添加RowPostPaint事件 //DataGridView所有单元格发生绘制的后的事件 private void dgv_data_RowPostPaint(object 阅读全文
摘要:
1,新建窗体 属性设置: FormBorderStyle-->None:无边框: BackColor:10,19,26 2,新建一个按钮 FlatStyle-->Flat:按钮扁平化 BorderColor:0,193,255:边框颜色 Image:加载图片 3,添加Label标签 ForeColo 阅读全文
摘要:
一,欢迎界面: 1.1,添加一个FrmSplashScreen窗体 属性设置: ShowInTaskBar-->False:不显示任务栏图标 StartPositon-->CenterScreen:程序置于屏幕中央 Size-->700,400:背景图片的尺寸 FormBorderStyle-->N 阅读全文
摘要:
1,源代码 #region 圆形标签类 public class CircleLabel : Label//继承标签类 重新生成解决方案就能看见我啦 { protected override void OnPaint(PaintEventArgs e)//重新设置控件的形状 protected 保护 阅读全文
摘要:
以下是学习笔记: 一,一般存储过程的调用 1.1 在SQLHelper中添加方法 /// <summary> /// 执行通用的增,删,改操作 /// </summary> /// <param name="cmdText">slq语句或存储过程名称</param> /// <param name= 阅读全文
摘要:
1.自定义控件 using System; using System.Collections.Generic; using System.ComponentModel; using System.Drawing; using System.Data; using System.Linq; using 阅读全文
摘要:
1,按下Enter触发事件 private void txt_UserId_KeyDown(object sender, KeyEventArgs e) { if (e.KeyCode == Keys.Enter) { //或者其他事件 this.btn_Login_Click(null, null 阅读全文
摘要:
第一步:新建2个窗体 主窗体的代码,弹出 下载的窗体 public partial class FormMain : Form { public FormMain() { InitializeComponent(); } //弹出下载的窗体 private void button1_Click(ob 阅读全文