PropertyGrid: CheckBoxList Property

This entry is part 5 of 5 in the series C#: Property Grid

Build a CheckBoxList Property Type

 

 

  1. public class CheckBoxList : INotifyPropertyChanged
  2. {
  3. private dynamic _values;
  4. private dynamic selectedItem;
  5. public event PropertyChangedEventHandler PropertyChanged;
  6. public event PropertyValueChangedEventHandler PropertyValueChanged;
  7.  
  8. public CheckBoxList(String name, PropertyGrid pg)
  9. {
  10. PropertyName = name;
  11. PG = pg;
  12. }
  13.  
  14. private String PropertyName { get; set; }
  15. private PropertyGrid PG { get; set; }
  16.  
  17. public dynamic Values
  18. {
  19. get
  20. {
  21. return _values;
  22. }
  23. set
  24. {
  25. if (value != null)
  26. _values = value;
  27. }
  28. }
  29.  
  30. public string ValueMember { get; set; }
  31. public string DisplayMember { get; set; }
  32.  
  33. [Browsable(false)]
  34. public dynamic SelectedItem
  35. {
  36. get
  37. {
  38. return selectedItem;
  39. }
  40. set
  41. {
  42. String oldValue = selectedItem;
  43. selectedItem = value;
  44. if (PropertyChanged != null)
  45. PropertyChanged(this, new PropertyChangedEventArgs(PropertyName));
  46.  
  47. if (PG != null)
  48. {
  49. if (PropertyValueChanged != null)
  50. PropertyValueChanged(this, new PropertyValueChangedEventArgs(PG.SelectedGridItem, oldValue));
  51. }
  52. }
  53. }
  54.  
  55. public override string ToString()
  56. {
  57. return SelectedItem;
  58. }
  59. }

PropertyGrid: CheckBoxList Editor

This entry is part 4 of 5 in the series C#: Property Grid

You may want to add a checkboxlist to your property grid. If you do then the below code is what you will need to create the editor.

Build the CheckBox List Editor

  1. public class CheckBoxListEditor : System.Drawing.Design.UITypeEditor
  2. {
  3.       private IWindowsFormsEditorService es = null;
  4.       
  5.       public override UITypeEditorEditStyle GetEditStyle(System.ComponentModel.ITypeDescriptorContext context)
  6.       {
  7.             return UITypeEditorEditStyle.DropDown;
  8.       }
  9.  
  10.       public override object EditValue(ITypeDescriptorContext context, IServiceProvider provider, object value)
  11.       {
  12.             if (provider != null)
  13.             {
  14.                   // This service is in charge of popping our ListBox.
  15.                   es = ((IWindowsFormsEditorService)provider.GetService(typeof(IWindowsFormsEditorService)));
  16.  
  17.                   if (es != null && value is CheckBoxList)
  18.                   {
  19.                         var property = (CheckBoxList)value;
  20.                         var cl = new CheckedListBox();
  21.                         cl.CheckOnClick = true;
  22.  
  23.                         Dictionary<String, Boolean> vals = new Dictionary<string, bool>();
  24.  
  25.                         foreach (KeyValuePair<String, Boolean> kvp in property.Values)
  26.                         {
  27.                               vals[kvp.Key] = kvp.Value;
  28.                               cl.Items.Add(kvp.Key, kvp.Value);
  29.                         }
  30.  
  31.                         // Drop the list control.
  32.                         es.DropDownControl(cl);
  33.  
  34.                         if (cl.SelectedItem != null )
  35.                         {
  36.                               vals[cl.SelectedItem.ToString()] = !vals[cl.SelectedItem.ToString()];
  37.                               property.Values = vals;
  38.                               property.SelectedItem = String.Join(", ", (from v in vals where v.Value == true select v.Key).ToList());
  39.                               value = property;
  40.                         }
  41.                   }
  42.             }
  43.  
  44.             return value;
  45.       }
  46. }

PropertyGrid: DropDown Property

This entry is part 3 of 5 in the series C#: Property Grid

You may want to add a dropdown to your property grid. If you do then the below code is what you will need to create the property. You will also need the editor.

Build a DropDown Property Type

  1. public class DropDownList : INotifyPropertyChanged
  2. {
  3.       private dynamic _values;
  4.       private dynamic selectedItem;
  5.       public event PropertyChangedEventHandler PropertyChanged;
  6.       public event PropertyValueChangedEventHandler PropertyValueChanged;
  7.  
  8.       public DropDownList(String name, PropertyGrid pg)
  9.       {
  10.             PropertyName = name;
  11.             PG = pg;
  12.       }
  13.  
  14.       private String PropertyName { get; set; }
  15.       private PropertyGrid PG { get; set; }
  16.  
  17.       public dynamic Values
  18.       {
  19.             get
  20.             {
  21.                   return _values;
  22.             }
  23.             set
  24.             {
  25.                   if (value != null)
  26.                         _values = value;
  27.             }
  28.       }
  29.  
  30.       public string ValueMember { get; set; }
  31.       public string DisplayMember { get; set; }
  32.  
  33.       [Browsable(false)]
  34.       public dynamic SelectedItem
  35.       {
  36.             get
  37.             {
  38.                   return selectedItem;
  39.             }
  40.             set
  41.             {
  42.                   String oldValue = selectedItem;
  43.                   selectedItem = value;
  44.  
  45.                   if (PropertyChanged != null)
  46.                         PropertyChanged(this, new PropertyChangedEventArgs(PropertyName));
  47.  
  48.                   if (PG != null)
  49.                   {
  50.                         if (PropertyValueChanged != null)
  51.                               PropertyValueChanged(this, new PropertyValueChangedEventArgs(PG.SelectedGridItem, oldValue));
  52.                   }
  53.             }
  54.       }
  55.  
  56.       public override string ToString()
  57.       {
  58.             return SelectedItem;
  59.       }
  60. }

PropertyGrid: DropDown Editor

This entry is part 2 of 5 in the series C#: Property Grid

You may want to add a dropdown to your property grid. If you do then the below code is what you will need to create the editor.

Build the DropDown Editor

  1. public class DropDownEditor : System.Drawing.Design.UITypeEditor
  2. {
  3.       private IWindowsFormsEditorService es = null;
  4.       public override UITypeEditorEditStyle GetEditStyle(System.ComponentModel.ITypeDescriptorContext context)
  5.       {
  6.             return UITypeEditorEditStyle.DropDown;
  7.       }
  8.  
  9.       public override object EditValue(ITypeDescriptorContext context, IServiceProvider provider, object value)
  10.       {
  11.             if (provider != null)
  12.             {
  13.                   // This service is in charge of popping our ListBox.
  14.                   es = ((IWindowsFormsEditorService)provider.GetService(typeof(IWindowsFormsEditorService)));
  15.  
  16.                   if (es != null && value is DropDownList)
  17.                   {
  18.                         dynamic property = (DropDownList)value;
  19.                         var list = new ListBox();
  20.                         list.Click += ListBox_Click;
  21.  
  22.                         if (property.Values != null)
  23.                         {
  24.                               foreach (object item in property.Values)
  25.                               {
  26.                                     var propertyInfo = item.GetType().GetProperty(property.DisplayMember);
  27.                                     list.Items.Add(propertyInfo.GetValue(item, null));
  28.                               }
  29.                         }
  30.                         // Drop the list control.
  31.                         es.DropDownControl(list);
  32.  
  33.                         if (list.SelectedItem != null && list.SelectedIndices.Count == 1)
  34.                         {
  35.                               property.SelectedItem = list.SelectedItem;
  36.                               value = property;
  37.                         }
  38.                   }
  39.             }
  40.  
  41.             return value;
  42.       }
  43.  
  44.       void ListBox_Click(object sender, EventArgs e)
  45.       {
  46.             if (es != null)
  47.             {
  48.                   es.CloseDropDown();
  49.             }
  50.       }
  51. }