C# PropertyGrid控件的四个自定义操作

本文介绍了如何在C#中自定义PropertyGrid控件的功能,包括:1) 使用PasswordStringConverter实现输入时显示隐藏密码;2) 创建SetTimeItem类以设置下拉框选项;3) 实现PropertyGrid控件的自定义排序避免自动按拼音排序;4) 属性排序的两种方法。提供了相关代码示例和效果展示。
摘要由CSDN通过智能技术生成

1>PropertyGid 控件输入时显示隐藏密码为(*)


单独写一个PasswordStringConverter 类;

using System.ComponentModel;
using System.Globalization;

namespace Test
{
    public class PasswordStringConverter : StringConverter
    {
        public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType)
        {
            return base.CanConvertFrom(context, sourceType);
        }

        public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType)
        {
            if (destinationType.GetType() == typeof(string))
                return true;
            return base.CanConvertTo(context, destinationType);
        }

        public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType)
        {
            if (value.GetType() == typeof(string))
            {
                int stringSize;
                string retVal = "* ";
                Random randomString = new Random();


                if (value != null)
                    stringSize = ((string)value).Length;
                else
                    stringSize = randomString.Next(10);

                for (int i = 0; i < stringSize; i++)
                    retVal += "* ";

                return retVal;
            }

            return base.ConvertTo(context, culture, value, destinationType);
        }
        public override bool GetPropertiesSupported(ITypeDescriptorContext context)
        {
            return false;
        }
        public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext context)
        {
            string[] standardValues = new string[1];
            int stringSize;
            string retVal = "* ";
            Random randomString = new Random();


            stringSize = randomString.Next(
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值