摘要:
ListViewItem item = new ListViewItem(); foreach (Person p in person1) { item.SubItems[0].Text = p.Id.ToString(); item.SubItems.Add(p.Name); item.SubIt 阅读全文
摘要:
继承BinaryFormatter()类 [Serializable]//允许这个对象序列化 public class Person { public int Id { get; set; } public string Name { get; set; } public int Age { get 阅读全文
摘要:
按钮变色 borderColor边框的颜色 MouseDownBackColor鼠标悬浮在按钮上时边款的颜色 MouseOverBackColor点击时的颜色 把窗体嵌套在窗体里面 先在页面画一个panel,再添加一个页面(form)设置无边框,大小和panel一样。 上图为panel2 上图为无边 阅读全文