Пример #1
0
        private static void IncrementWork(float cant, string accion)
        {
            f_Work += cant;
            if (f_Work > 100f)
            {
                f_Work = 100f;
            }

            FormUpdater.UpdateText(accion);
            FormUpdater.UpdateProgress((int)f_Work);
        }