首页 > 解决方案 > 将自定义对象绑定到属性网格

问题描述

我需要将自定义对象列表绑定到属性网格中的下拉列表

public class Myclass{
[category("property settings")]
public ObjType DropValue{get;set;}
}

public class ObjType {
public int id;
public string name;
}

标签: c#winforms

解决方案


推荐阅读