NotepadPlusPlusPluginPack.Net icon indicating copy to clipboard operation
NotepadPlusPlusPluginPack.Net copied to clipboard

PropertyGrid dropdown list not showing up

Open nickdu088 opened this issue 7 years ago • 0 comments
trafficstars

Steps:

  1. Add a a PropertyGrid control in demo project frmGoToLine

  2. Add a new class inside of frmGoToLine ` class Test { public string Name { get; set; }

         public bool IsTrue { get; set; }
    
         public Color Color { get; set; }
    
         public Font Font { get; set; }
     }`
    
  3. Add propertyGrid1.SelectedObject = new Test(); in frmGoToLine constructor

Color, Boolean dropdown list not showing up but FontDialog pops up.

nickdu088 avatar Oct 09 '18 12:10 nickdu088