private void bAddProperty_Click(object sender, EventArgs e)
        {
            var propertyCollection = m_ConfigurationFile.GetPropertyCollection(editPropertyCollectionName.Text);

            propertyCollection.SetValue(editPropertyName.Text, editPropertyValue.Text);

            m_PropertyCollectionNames.Add(editPropertyCollectionName.Text);
            UpdateInfoOutputPropertyCollectionNames();
        }