This is a follow-up to my question from last week re a data-driven property grid.
1. Is there any way to remove the white space to the left?
2. In the (abbreviated) code below, I am able to set the ForeColor of the text description but If I try the BackColor, nothing happens. Perhaps a bug?
private void propDataDriven_ItemFormatting(object sender, PropertyGridItemFormattingEventArgs e){
PropertyGridItemElement el = e.VisualElement as PropertyGridItemElement;
el.TextElement.ForeColor = Color.Red; //works fine
el.TextElement.BackColor = Color.Green; //does nothing
}
3. Looking at the date entry, I turned off the context menu but the vertical ellipsis still appears when I click in the cell. Nothing happens when I click on this though. is this intended behavior? I'd rather not see it at all.
Thanks
Carl