0
votes

I'm trying to change the color from every Item from the menu Strip, but the dropdown items I can't change.The dropdown menu items aren't white the way I want. My need is to change the ForeColor from every item with one code in the .cs file.

1
The related codes should be provided to help you out. - hina10531
There is no code to chance every ForeColor at once. not that i can find - Who'sMe
Please see "Should questions include “tags” in their titles?", where the consensus is "no, they should not"! - user57508

1 Answers

0
votes

Pertinent to your rather broad question, the sort of generic answer is: ToolStripMenuItem controls (e.g. _mnuItem ) have ForeColor property, which can be set programmatically in C# code-behind, like: _mnuItem .ForeColor = Color.Black;

Hope this may help.