摘要:
var cookieManager = Cef.GetGlobalCookieManager(); cookieManager.SetCookieAsync("http://127.0.0.1:5000", new Cookie() { Name = "aaa", Value = "bbb", }) 阅读全文
摘要:
#region 内存回收 [DllImport("kernel32.dll", EntryPoint = "SetProcessWorkingSetSize")] public static extern int SetProcessWorkingSetSize(IntPtr process, in 阅读全文
摘要:
Point p = this.Location; Form2 form2 = new Form2(p); int l2 = this.Width/2 - form2.Width / 2; int t2 = this.Height/2 - form2.Height / 2; int l = p.X + 阅读全文