Hi,

I have a class with two Properties like HasSubMenu, and SubMenu , object of this class is bound to property grid. The class is given below.

Code:
class test
{

    private bool m_HasSubMenu;
    private string m_SubMenu;
     
    [Browsable(true)]
    public bool HasSubMenu
    {
        get { return m_HasSubMenu; }
        set { m_HasSubMenu = value; }
...