最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
改变 PropertyGrid 控件的编辑风格(4)――加入选择列表
时间:2022-07-02 11:55:56 编辑:袖梨 来源:一聚教程网
改变 PropertyGrid 控件的编辑风格(4)――加入选择列表
张昱[email protected]
效果:
适用场合:
限制选择输入
步骤一:定义从UITypeEditor 继承的抽象类:ComboBoxItemTypeConvert。示例如下:
using System;
using System.Collections;
using System.ComponentModel;
namespace blog.111com.net.zhangyuk
{
/// IMSTypeConvert 的摘要说明。
///
public abstract class ComboBoxItemTypeConvert : TypeConverter
{
public Hashtable _hash = null;
public ComboBoxItemTypeConvert()
{
_hash = new Hashtable();
GetConvertHash();
}
public abstract void GetConvertHash();
public override bool GetStandardValuesSupported( ITypeDescriptorContext context )
{
return true;
}
public override StandardValuesCollection GetStandardValues(
张昱[email protected]
效果:
适用场合:
限制选择输入
步骤一:定义从UITypeEditor 继承的抽象类:ComboBoxItemTypeConvert。示例如下:
using System;
using System.Collections;
using System.ComponentModel;
namespace blog.111com.net.zhangyuk
{
/// IMSTypeConvert 的摘要说明。
///
public abstract class ComboBoxItemTypeConvert : TypeConverter
{
public Hashtable _hash = null;
public ComboBoxItemTypeConvert()
{
_hash = new Hashtable();
GetConvertHash();
}
public abstract void GetConvertHash();
public override bool GetStandardValuesSupported( ITypeDescriptorContext context )
{
return true;
}
public override StandardValuesCollection GetStandardValues(