摘要:
https://www.cnblogs.com/wanghonghu/p/4093411.html set identity_insert 表名 ON --允许对自增列Id插入指定数据 insert into table_name(Id,Name) values(1,'test') set iden 阅读全文
摘要:
//// 配置 xml 文档 //var BaseDirectory = AppContext.BaseDirectory; //var xmlFileLoacl = $"{Assembly.GetExecutingAssembly().GetName().Name}.xml"; //var xml 阅读全文
摘要:
https://www.cnblogs.com/xhubobo/p/14445511.html 使用过程参考:在ASP.Net Core Web API中使用Swagger,本文在此基础上阐述如何进行API文档的版本控制。 1、添加API枚举类型 public enum ApiVersion { / 阅读全文
摘要:
//先给 DataGridView 赋值一个空表 DataSet ds_temp = 数据库.getDs("select * from 表名 where 1=0"); if (ds_temp != null && ds_temp.Tables.Count > 0) { rcomdgv1.DataSo 阅读全文
摘要:
SQLite Encryption(加密)问题_码农01号的博客-程序员宅基地 - 程序员宅基地 (cxyzjd.com) SQLite Encryption(加密)问题_码农01号的博客-程序员宅基地 - 程序员宅基地 (cxyzjd.com) SQLite Encryption(加密)问题_码农 阅读全文
摘要:
public static string SetSaveFilePath(string filterType= "所有文件|*.*",string fileName="我的文件",string defaultExt=".txt") { SaveFileDialog dialog = new Save 阅读全文
摘要:
https://my.oschina.net/smartsmile/blog/814810 //Image转换Bitmap //1. Bitmap img = new Bitmap(imgSelect.Image); //2. Bitmap bmp = (Bitmap)pictureBox1.Ima 阅读全文
摘要:
https://wenku.baidu.com/view/621fbbec0066f5335b81218f.html 一、关闭窗体在c#中退出WinForm 程序包括有很多方法, 如:this.Close();Application. Exit(); Application. ExitThread( 阅读全文
摘要:
https://www.cnblogs.com/qiantao/p/9468570.html 作为研发人员,在本机上开发的winform、wpf或者控制台程序需要发给其他人测试时候,一般需要对其进行打包生成setup安装文件,根据网上查找的资料并结合自己打包成功,记录如下: 注:本程序是一个利用wi 阅读全文
摘要:
https://blog.csdn.net/weixin_34198881/article/details/93301519 //定位到指定行(样式)dataGridView1.ClearSelection();dataGridView1.Rows[selectIndex].Selected = t 阅读全文