Hello,
I have a DropDown menu with some items that should be accessible only after the user has configured something. I wanted to use the Enabled property but in my case it's impossible.
So, I was thinking about the DropDownOpening event. I would look if (IsConfigured == true) and if it's false, I want to stop the opening process so that the DropDown menu does not open and show the items.
How could I do that ?
Thank you.