摘要:
根据官方文档描述是因为缺少了一个补丁(KB3063858) 下载链接为 https://www.microsoft.com/en-us/download/details.aspx?id=47442,装过该补丁后就可以运行.Net5程序。 ps:装完补丁需要重启电脑 阅读全文
摘要:
鼠标点击某个控件时的移动 #region 鼠标拖动 [DllImport("user32.dll")] public static extern bool ReleaseCapture(); [DllImport("user32.dll")] public static extern bool Se 阅读全文
摘要:
/// <summary> /// Json字符串首字母转大写 /// </summary> /// <param name="strJsonData">json字符串</param> /// <returns></returns> public static string UpperFirst(s 阅读全文
摘要:
JAVA中调用外部程序,并等待其退出(涉及Runtime和ProcessBuilder) 阅读全文
摘要:
/// /// 注册控件 /// /// public bool RegControl() { try { //判断该控件是否已经注册 if (!CheckRegistredOcx(@"CLSID\{00460182-9E5E-11D5-B7C8-B8269041DD57}")) { string sPath = Path.Combine(WorkSpace.Public... 阅读全文