Search code examples
c#winformspropertiescolorspropertygrid

How to change toolbar color in Property Grid?


Can't find a color property in PropertyGrid form to change THIS color that color, can't change it


Solution

  • What's wrong with PropertyGrid.BackColor ? You're looking for BackColor property.

    propertyGrid1.BackColor = Color.Gray;