摘要: 获取ComboBox下拉列表的所有选项值 ArrayList al = new ArrayList(); foreach (string item in this.comboBox2.Items) { Console.WriteLine(item); al.Add(item); } 弹出窗体 //弹 阅读全文
posted @ 2019-05-23 22:40 虚无缥缈的云 阅读(342) 评论(0) 推荐(0) 编辑
摘要: 打印对象: foreach (PropertyDescriptor descriptor in TypeDescriptor.GetProperties(obj)) { string name = descriptor.Name; object val = descriptor.GetValue(o 阅读全文
posted @ 2019-05-23 21:24 虚无缥缈的云 阅读(187) 评论(0) 推荐(0) 编辑