上一页 1 2 3 4 5 6 ··· 10 下一页
摘要: ListViewItem item = new ListViewItem(); foreach (Person p in person1) { item.SubItems[0].Text = p.Id.ToString(); item.SubItems.Add(p.Name); item.SubIt 阅读全文
posted @ 2023-08-16 19:30 阿霖找BUG 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 继承BinaryFormatter()类 [Serializable]//允许这个对象序列化 public class Person { public int Id { get; set; } public string Name { get; set; } public int Age { get 阅读全文
posted @ 2023-08-16 14:24 阿霖找BUG 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 按钮变色 borderColor边框的颜色 MouseDownBackColor鼠标悬浮在按钮上时边款的颜色 MouseOverBackColor点击时的颜色 把窗体嵌套在窗体里面 先在页面画一个panel,再添加一个页面(form)设置无边框,大小和panel一样。 上图为panel2 上图为无边 阅读全文
posted @ 2023-08-16 14:20 阿霖找BUG 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 常量是必须要有初始值,且不能改变, 用const来声明 变量可以没有初始值,且可以多次赋值。 先声明后赋值 是一个容器,作用在于可以起到一个临时数据 阅读全文
posted @ 2023-08-01 15:57 阿霖找BUG 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 虚函数是有代码的并明确允许子类去覆盖,但子类也可不覆盖,就是说可以直接用,不用重写 //虚方法,必须声明主体(默认方法体)可重写可不重写。 public class A { public virtual void a() { Console.WriteLine("虚函数a"); } public v 阅读全文
posted @ 2023-07-28 23:04 阿霖找BUG 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 事件是委托的实例 三大特性订阅,触发,发布 学生,老师,学校三个类 学校有个方法叫上课倒计时,学生和老师订阅了这个方法,有一个事件叫上课铃,学生和老师有个方法叫上课去了。 学生和老师的“上课去了”方法注册到“上课”事件中。当学校倒计时结束调用这个事件,发布上课消息,学生和老师收到就会触发“上课去了” 阅读全文
posted @ 2023-07-28 22:46 阿霖找BUG 阅读(65) 评论(0) 推荐(0) 编辑
摘要: 8与7之间的公约数 15/7=2.....1 7/1=7....0 公约数是1 public static int Gmc(int a, int b) { int tmpe=0; while (b != 0) { tmpe = a % b; a = b; b = tmpe; } return a; 阅读全文
posted @ 2023-07-26 23:39 阿霖找BUG 阅读(6) 评论(0) 推荐(0) 编辑
摘要: public static void CallToChildThread() { try { Console.WriteLine("执行子程序"); int sleepfor = 5000; Thread.Sleep(sleepfor); Console.WriteLine($"暂停{sleepfo 阅读全文
posted @ 2023-07-24 23:20 阿霖找BUG 阅读(5) 评论(0) 推荐(0) 编辑
摘要: static void Main(string[] args) { // int[] a=new int[]{1,1,4,6,10}; for(int i=0;i<a.Length;i++){ for(int j=i+1;j<a.Length;j++){ if(a[i]>a[j]){ int tmp 阅读全文
posted @ 2023-07-20 17:53 阿霖找BUG 阅读(3) 评论(0) 推荐(0) 编辑
摘要: public enum Sea { id, age, name } Sea s = Sea.age; Sea s1 = Sea.id; var s2 = (Sea)2;//name Console.WriteLine($"{s},{(int)s},{(int)s1},{s2}");//age,1,0 阅读全文
posted @ 2023-07-17 09:39 阿霖找BUG 阅读(8) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 10 下一页