コード例 #1
0
        /// <summary>
        /// Adds the specified c.
        /// </summary>
        /// <param name="c">The c.</param>
        public void Add(NodeControlSettingsCollection c)
        {
            int MaxCount = c.Count;

            for (int Index = 0; Index < MaxCount; Index++)
            {
                string          text = c.GetKey(Index);
                ControlSettings data = c.GetValue(Index);

                this.Add(text, data);
                // this[text].IsModified = true;
            }
        }