How to remove description at the bottom of PropertyGrid
-
I created a Property Grid and it displays an description at the bottom. Can anyone please let me know hoe to remove it. I tried with Description(null) and descriptionattribute(null) , but still it shows the description Thanks !
-
I created a Property Grid and it displays an description at the bottom. Can anyone please let me know hoe to remove it. I tried with Description(null) and descriptionattribute(null) , but still it shows the description Thanks !
It's cunningly hidden as a property.
progressbar.HelpVisible = false;
Deja View - the feeling that you've seen this post before.
-
It's cunningly hidden as a property.
progressbar.HelpVisible = false;
Deja View - the feeling that you've seen this post before.
Thanks for your Help . It worked. Not Sure Why in .NET they have did the property Like that !