/// <summary>
        /// Xử lý những dữ liệu thay đổi
        /// </summary>
        private void DoSave()
        {
            var ListUpdate = LayoutControl.FindAllChildrenByType <Control>().Where(c => c is IShInput && c.Tag != null && c.Tag.ToString() != null && c is ITextChange && ((ITextChange)c).IsChangeText).Cast <IShInput>().ToList();

            if (ListUpdate != null && ListUpdate.Count > 0)
            {
                ListUpdate.ForEach(p =>
                {
                    Config_Common.Update(((Control)p).Tag.To <int>(), ConvertToString(p.GetValue()));
                    ((ITextChange)p).IsChangeText = false;
                });
            }
        }