摘要: 创建类库,并添加新窗体,加入以下方法 public static string setText(string str) { return str; } 编译后把生成的DLL文件放入新项目的bin目录,新项目需要using System.Reflection窗口放入2个button,并添加实现 //通 阅读全文
posted @ 2020-05-12 15:32 liessay 阅读(425) 评论(0) 推荐(1) 编辑
摘要: 首先创建模型类Menus public class Menus { //菜单Id public int Id { get; set; } //菜单名 public string MenuName { get; set; } //父节点Id public int ParentId { get; set 阅读全文
posted @ 2020-05-12 08:48 liessay 阅读(3331) 评论(2) 推荐(3) 编辑