BExplorer.Shell.ShellComboBox.CreateItems C# (CSharp) Method

CreateItems() private method

Occurs when the ShellComboBox control wants to know if it should include a folder in its view.
This event allows the folders displayed in the ShellComboBox control to be filtered.
private CreateItems ( ) : void
return void
        void CreateItems()
        {
            if (!m_CreatingItems)
            {
                try
                {
                    m_CreatingItems = true;
                    m_Combo.Items.Clear();
                    CreateItem(m_RootFolder, 0);
                }
                finally
                {
                    m_CreatingItems = false;
                }
            }
        }