PropertyGrid 用法(下拉框篇)

这篇博客介绍了如何在PropertyGrid中创建一个下拉框,通过示例代码展示了如何利用DropDownListRoleConverter类和DropDownListRoleControll控件实现对象选择。博客提到了需要根据实际情况修改的部分,并提供了一个用于显示角色列表的示例。
摘要由CSDN通过智能技术生成

如果有在PropertyGrid中用下拉框的朋友有困难的,请参见下面。并希望高手提出意见,

说明:下面的代码是不能run的。这是直接copy了我的东西,想用的朋友,需要修一些地方.

using System;
using System.Text;
using System.Reflection;
using System.Collections;
using System.ComponentModel;
using System.Runtime.InteropServices;
using System.Data;
using System.Drawing;
using System.Drawing.Design;

namespace Com.WorkFlowEnginer.Entity
{
 #region 对象下来列表控建[Role]
 
 //对象选择下拉列表转化
 public class DropDownListRoleConverter : System.Drawing.Design.UITypeEditor
 {
  public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext context)
  {
   return System.Drawing.Design.UITypeEditorEditStyle.DropDown;
  }

  public override object EditValue(ITypeDescriptorContext context, IServiceProvider provider, object value)
  {
   System.Windows.Forms.Design.IWindowsFormsEditorService iws = (Sys

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值