10 2018 档案

C# 反射获取控件
摘要:Control control = Controls.Find("button1", true)[0]; //object o = control.GetType().GetProperty("PropertyName").GetValue(control, null); System.Reflection.EventInfo ev = control.GetType().GetEvent("C... 阅读全文

posted @ 2018-10-19 12:45 HOT SUMMER 阅读(2794) 评论(0) 推荐(0)

C#中,重新排列panel中的按钮
摘要:https://www.cnblogs.com/hfzsjz/archive/2010/08/13/1799068.html 阅读全文

posted @ 2018-10-18 23:28 HOT SUMMER 阅读(981) 评论(0) 推荐(0)

C#根据字符串名称 得到对应的方法
摘要:public string GetMethod(string methodName, BookingRequest bookingId) { EmailTemplate p1 = new EmailTemplate();//类 Type t = p1.GetType(); var mi = t.GetMethod(meth... 阅读全文

posted @ 2018-10-18 23:22 HOT SUMMER 阅读(1873) 评论(0) 推荐(0)

List 比较大小
摘要:List lst = new List(); lst.Add(new Player("John", 100)); lst.Add(new Player("Smith", 120)); lst.Add(new Player("Cait", 97)); lst.Add(new Pl... 阅读全文

posted @ 2018-10-17 11:03 HOT SUMMER 阅读(1377) 评论(0) 推荐(0)

(转)PyCharm报错:“No R interpreter defined: Many R……”——解决办法
摘要:报错截图: 下载安装链接:The Comprehensive R Archive Network 阅读全文

posted @ 2018-10-15 10:18 HOT SUMMER 阅读(850) 评论(0) 推荐(0)

导航