C#Property Grid属性选择多次显示表单

时间:2012-07-09 11:32:38

标签: c# winforms propertygrid

我创建了一个具有自定义数组值的属性网格。当用户选择其中一个下拉列表时,我希望它显示一个表单。我的问题不在于它不起作用,它不是过度活跃并且显示形式大约6次,尽管只被宣布一次。如果我选择ShowDialog,它会显示两次表单,在尝试关闭第二个对话框时,它会创建另外两个表单实例。下面是我正在使用的代码。我无法弄清楚出了什么问题。

//Property Grid Type
 internal class TransferConnectionPropertyConverter : StringConverter
    {
        public override bool GetStandardValuesSupported(ITypeDescriptorContext context)
        {
            return true;
        }

        public override bool GetStandardValuesExclusive(ITypeDescriptorContext context)
        {
            return true;
        }

        public override TypeConverter.StandardValuesCollection GetStandardValues(ITypeDescriptorContext context)
        {
            return new StandardValuesCollection(new string[] { "", NEW_CONN });
        }            
    }

//Property Grid Node
[Category("Connection"),
Description("Specifies the type of connection for this task.")]
[TypeConverter(typeof(TransferConnectionPropertyConverter))]
public string TransferProtocol
{
    get
    {
         if (stConnectionType == NEW_CONN)
         {
              ConnectionDetailsForm connDetails = new ConnectionDetailsForm();
              connDetails.Show();                        
         }
         return stConnectionType;
    }
    set
    {
         stConnectionType = value;
    }                                       
}

1 个答案:

答案 0 :(得分:1)

你需要一个编辑器,你绝对不希望在一个属性的get property期间显示一个表单,因为在PropertyGrid的生命周期中可以多次调用它。

简单类(从this example找到):

public class StringEditor : UITypeEditor {
  public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext context) {
    return UITypeEditorEditStyle.Modal;
  }

  public override object EditValue(ITypeDescriptorContext context, IServiceProvider provider, object value) {
    IWindowsFormsEditorService svc = (IWindowsFormsEditorService)
      provider.GetService(typeof(IWindowsFormsEditorService));
    if (svc != null) {
      svc.ShowDialog(new ConnectionDetailsForm());
      // update etc
    }
    return value;
  }
}

然后你为这个编辑器装饰你的属性(注意,我删除了转换器,因为你的属性只是一个字符串,无需转换):

[Category("Connection")]
[Description("Specifies the type of connection for this task.")]
[Editor(typeof(StringEditor), typeof(UITypeEditor))]
public string TransferProtocol {
  get {
    return stConnectionType;
  }
  set {
    stConnectionType = value;
  }
}