internal void ChangeNavButtonImage(ref object pict, Image img, EnumNewOldIndicator indicator)
        {
            try
            {
                PictureBox pbox = pict as PictureBox;

                if (indicator.Equals(EnumNewOldIndicator.Old))
                {
                    pbox.BackColor = ClsCommon.gobjclsVariables.gcolUIDark;
                }
                else
                {
                    pbox.BackColor = ClsCommon.gobjclsVariables.gcolUILight;
                }

                if (img != null)
                {
                    pbox.Image = img;
                }
            }
            catch (Exception)
            {
                throw;
            }
        }
        public void ChangeIcon(ref object objPbox, EnumNewOldIndicator indicator)
        {
            try
            {
                Bitmap image = null;

                if (indicator.Equals(EnumNewOldIndicator.Old))
                {
                    image = (Bitmap)Properties.Resources.ResourceManager.GetObject("icoSettings_small_Alt");
                }
                else
                {
                    image = (Bitmap)Properties.Resources.ResourceManager.GetObject("icoSettings");
                }

                ClsCommon.gobjclsFunctions.ChangeNavButtonImage(ref objPbox, image, indicator);
            }
            catch (Exception)
            {
                throw;
            }
        }