09 2020 档案

摘要:public partial class WeighRecord : Form { WeighRecordSet headsSet = null; public WeighRecord() { InitializeComponent(); this.RecordTimepx.Format = Dat 阅读全文
posted @ 2020-09-30 15:17 cclon 阅读(1787) 评论(0) 推荐(0) 编辑
摘要://方法一 表头调换, 后台调用 this.dataGridView1.Columns["ProductName"].DisplayIndex = 0; //方法二 表头调换,属性设置, 页面上拖拽 this.dataGridView1.AllowUserToOrderColumns = true; 阅读全文
posted @ 2020-09-30 10:17 cclon 阅读(1710) 评论(0) 推荐(1) 编辑
摘要:vs2019 .netcode3.1 using Bps.DTO; using ICSharpCode.SharpZipLib.Zip; using Microsoft.AspNetCore.Mvc; using Swashbuckle.AspNetCore.Annotations; using S 阅读全文
posted @ 2020-09-10 18:09 cclon 阅读(302) 评论(0) 推荐(0) 编辑
摘要:C#位数不足补零:int i=10;方法1:Console.WriteLine(i.ToString("D5"));方法2:Console.WriteLine(i.ToString().PadLeft(5,'0'));//推荐方法3:Console.WriteLine(i.ToString("000 阅读全文
posted @ 2020-09-04 11:41 cclon 阅读(3661) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示