下拉框在PropertyGrid的用法

2024-01-16 16:08

本文主要是介绍下拉框在PropertyGrid的用法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

本例子在项目中已试验通过。

直接看代码例子:

  1. #region bill of material drop-down list
  2.     public class DropDownListBillConverter : System.Drawing.Design.UITypeEditor
  3.     {
  4.         public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext context)
  5.         {
  6.             return System.Drawing.Design.UITypeEditorEditStyle.DropDown;
  7.         }
  8.         
  9.         public override object EditValue(ITypeDescriptorContext context, IServiceProvider provider, object value)
  10.         {
  11.             System.Windows.Forms.Design.IWindowsFormsEditorService iws = (System.Windows.Forms.Design.IWindowsFormsEditorService)provider.GetService(typeof(System.Windows.Forms.Design.IWindowsFormsEditorService));
  12.             if (iws != null)
  13.             {
  14.                 DropDownListBillControll dlc = new DropDownListBillControll(iws,value);
  15.                 iws.DropDownControl(dlc);
  16.                 return (Bill)dlc.SelectedItem;
  17.             }
  18.             return value;
  19.         }
  20.     }
  21.     public class DropDownListBillControll : System.Windows.Forms.ListBox
  22.     {
  23.         public DropDownListBillControll(System.Windows.Forms.Design.IWindowsFormsEditorService iws,object value)
  24.         {
  25.             //inite dropdownlist value
  26.             DataSet ds = FormDesignerDataAccess.BomGroups;
  27.             
  28.             if (ds != null && ds.Tables[0]!=null && ds.Tables[0].Rows.Count>0)
  29.             {
  30.                 foreach (DataRow dr in ds.Tables[0].Rows)
  31.                 {
  32.                     Bill b = new Bill();
  33.                     b.GroupId = dr["GroupId"].ToString();
  34.                     b.GroupName = dr["GroupName"].ToString();
  35.                     this.Items.Add(b);
  36.                 }                
  37.             }
  38.             if (value != null)
  39.             {
  40.                 string selectevalue = ((Bill)value).GroupId;
  41.                 for (int i = 0; i < this.Items.Count; i++)
  42.                 {
  43.                     if (((Bill)this.Items[i]).GroupId == selectevalue)
  44.                     {
  45.                         this.SelectedIndex = i;
  46.                         break;
  47.                     }
  48.                 }
  49.             }
  50.             this._iws = iws;
  51.             this.Visible = true;
  52.             this.BorderStyle = System.Windows.Forms.BorderStyle.None;
  53.             this.SelectedValueChanged += new EventHandler(cb_SelectedValueChanged);
  54.             this.DisplayMember = "GroupName";
  55.             this.ValueMember = "GroupId";
  56.         }
  57.         
  58.         private System.Windows.Forms.Design.IWindowsFormsEditorService _iws;
  59.         private void cb_SelectedValueChanged(object sender, EventArgs e)
  60.         {
  61.             if (this.SelectedItem != null)
  62.             {
  63.                 //this.select = (Bill)this.SelectedItem;
  64.                 this._iws.CloseDropDown();
  65.             }
  66.         }
  67.     }
  68.     public class Bill
  69.     {
  70.         public string GroupId{get;set;}
  71.         public string GroupName{get;set;}
  72.         public override string ToString()
  73.         {
  74.             return GroupName; 
  75.         }
  76.     }
  77.     #endregion

用法如下:

  1. public class BillOfMaterialsQuestion : IQuestion
  2.     {
  3.         /// <summary>
  4.         /// If this question is required.
  5.         /// </summary>
  6.         [DescriptionAttribute("If this question is required.")]
  7.         public bool Required { getset; }
  8.         private Bill m_Part;
  9.         [ReadOnlyAttribute(false),
  10.         BrowsableAttribute(true),
  11.         EditorAttribute(typeof(DropDownListBillConverter), typeof(System.Drawing.Design.UITypeEditor)),
  12.         DescriptionAttribute("Parts list")
  13.         ]
  14.         public Bill Part
  15.         {
  16.             get { return m_Part; }
  17.             set { m_Part = value; }
  18.         }
  19.         public BillOfMaterialsQuestion()
  20.         {
  21.              
  22.         }
  23.     }

 

 

这篇关于下拉框在PropertyGrid的用法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/613144

相关文章

oracle中exists和not exists用法举例详解

《oracle中exists和notexists用法举例详解》:本文主要介绍oracle中exists和notexists用法的相关资料,EXISTS用于检测子查询是否返回任何行,而NOTE... 目录基本概念:举例语法pub_name总结 exists (sql 返回结果集为真)not exists (s

Springboot中Jackson用法详解

《Springboot中Jackson用法详解》Springboot自带默认json解析Jackson,可以在不引入其他json解析包情况下,解析json字段,下面我们就来聊聊Springboot中J... 目录前言Jackson用法将对象解析为json字符串将json解析为对象将json文件转换为json

C# ComboBox下拉框实现搜索方式

《C#ComboBox下拉框实现搜索方式》文章介绍了如何在加载窗口时实现一个功能,并在ComboBox下拉框中添加键盘事件以实现搜索功能,由于数据不方便公开,作者表示理解并希望得到大家的指教... 目录C# ComboBox下拉框实现搜索步骤一步骤二步骤三总结C# ComboBox下拉框实现搜索步骤一这

bytes.split的用法和注意事项

当然,我很乐意详细介绍 bytes.Split 的用法和注意事项。这个函数是 Go 标准库中 bytes 包的一个重要组成部分,用于分割字节切片。 基本用法 bytes.Split 的函数签名如下: func Split(s, sep []byte) [][]byte s 是要分割的字节切片sep 是用作分隔符的字节切片返回值是一个二维字节切片,包含分割后的结果 基本使用示例: pa

Android13_SystemUI下拉框新增音量控制条

提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档 Android13_SystemUI下拉框新增音量控制条 一、必备知识二、源码分析对比1.brightness模块分析对比2.statusbar/phone 对应模块对比对比初始化类声明对比构造方法 三、源码修改四、相关资源 一、必备知识 在Android12 版本上面已经完成了功能的实现,目前是在And

UVM:callback机制的意义和用法

1. 作用         Callback机制在UVM验证平台,最大用处就是为了提高验证平台的可重用性。在不创建复杂的OOP层次结构前提下,针对组件中的某些行为,在其之前后之后,内置一些函数,增加或者修改UVM组件的操作,增加新的功能,从而实现一个环境多个用例。此外还可以通过Callback机制构建异常的测试用例。 2. 使用步骤         (1)在UVM组件中内嵌callback函

这些ES6用法你都会吗?

一 关于取值 取值在程序中非常常见,比如从对象obj中取值 const obj = {a:1b:2c:3d:4} 吐槽: const a = obj.a;const b = obj.b;const c = obj.c;//或者const f = obj.a + obj.b;const g = obj.c + obj.d; 改进:用ES6解构赋值

2021-8-14 react笔记-2 创建组件 基本用法

1、目录解析 public中的index.html为入口文件 src目录中文件很乱,先整理文件夹。 新建components 放组件 新建assets放资源   ->/images      ->/css 把乱的文件放进去  修改App.js 根组件和index.js入口文件中的引入路径 2、新建组件 在components文件夹中新建[Name].js文件 //组件名首字母大写

Cmake之3.0版本重要特性及用法实例(十三)

简介: CSDN博客专家、《Android系统多媒体进阶实战》一书作者 新书发布:《Android系统多媒体进阶实战》🚀 优质专栏: Audio工程师进阶系列【原创干货持续更新中……】🚀 优质专栏: 多媒体系统工程师系列【原创干货持续更新中……】🚀 优质视频课程:AAOS车载系统+AOSP14系统攻城狮入门视频实战课 🚀 人生格言: 人生从来没有捷径,只有行动才是治疗恐惧

关于断言的部分用法

1、带变量的断言  systemVerilog assertion 中variable delay的使用,##[variable],带变量的延时(可变延时)_assertion中的延时-CSDN博客 2、until 的使用 systemVerilog assertion 中until的使用_verilog until-CSDN博客 3、throughout的使用   常用于断言和假设中的