01 2022 档案
摘要://可以放到timer里执行 private void button2_Click(object sender, EventArgs e) { string mainTitle = System.Configuration.ConfigurationManager.AppSettings["main
阅读全文
摘要:网上搜到很多理论,没有实际的例子,自己尝试写一写 .Net Framework 4.5 VS 2017 WinForm 项目 using System; using System.Collections.Generic; using System.ComponentModel; using Syst
阅读全文
摘要:/// <summary> /// 设置行距 /// </summary> /// <param name="ctl">控件</param> /// <param name="dyLineSpacing">间距,初始值至少大于(font.size+1)*30</param> public stati
阅读全文
摘要://行高至少大于20 public static void SetComboBoxLineHeight(ComboBox list, int itemHeight) { list.DropDownStyle = ComboBoxStyle.DropDownList; list.ItemHeight
阅读全文
摘要:查看用户名git config user.name 查看密码git config user.password 查看邮箱git config user.email 如果不对,重新设置用户名和邮箱 git config --global user.name "xxx"git config --globa
阅读全文