public static bool ResizingTextInput(ref string input, uint maxLength)
        {
            var(ret, id) = ResizingTextInputIntern($"##{input}", ref input, maxLength);
            if (ret)
            {
                TextInputWidths.Remove(id);
            }

            return(ret);
        }