2019年4月8日

TableLayoutPanel 动态添加 行 列

摘要: //添加行 横排 ++this.tbPnl.RowCount; this.tbPnl.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F)); ++this.tbPnl. 阅读全文

posted @ 2019-04-08 16:59 马什么梅 阅读(4817) 评论(0) 推荐(0)

C# 左右补零

摘要: //不够4位补零 public static string addZero(int val) { string str = val + ""; int strLen = str.Length; if (strLen < 4) { while (strLen < 4) { StringBuilder 阅读全文

posted @ 2019-04-08 09:29 马什么梅 阅读(540) 评论(0) 推荐(0)

导航