There is a Qt plugin for VS. This can import Qt projects and handle most of the stuff automatically. I personally prefer to use qmake.exe -tp vc MyProject.pro to generate a VS project file. If you want to be portable (Linux/macOS) I would say it is the preferred way to always make changes to the .pro file (adding/deleting files) and regenerate the VS project from it.
I believe (I am not a great fan of the Qt plugin for VS and don't use it) that the Qt plugin does all the stuff necessary for the project file. But, it does not have the Qt Designer built in. You need to use Qt's own tools to still edit UI-files.
If ICC does not show up inside Qt Creator automatically, you can add it by hand and then add it to a kit. I am not sure how well that is supported. Is there any specific reason you want to use ICC? A while back (I believe it was ICC v14) I did some benchmarks and ICC did not optimize OO code. It was slightly faster with regular C code, but no meaningful optimizations for C++. Only this year did they start to use clang as backend and I would expect that this version of the current ICC could actually be better. If you don't make sure to use the clang-variant of ICC and don't have any other specific reasons to use it (performance at least wasn't a reason a while back), just use one of the default compilers on Windows.