I would personally try to do it through peer pressure. Your developers are in the best place to judge when they are in a good state to check in and you want to trust them to check-in when it is a good time. But you also want to help them so that they are making changes in small, working increments (where each working point could, and should, be a point at which they check in).
A few things you can do to encourage frequent check-ins:
Have Continuous Integration (CI) build of the product and the easiest way to get things built/tested. If this is a web site, get it to push the checked in website to a dev/test environmnent etc. Make it so that this build is fast and consistently works (i.e. the build never fails unless the code checked in is bad).
Have quick (5-10min) daily meetings (sometimes called stand-ups) to discuss how things are going in the dev team. Bring up a history query for your project in these meetings so that people can see what was checked in since the previous meeting. The one or two people not checking in regularly will subtly feel the pressure of their name not being up on the list, especially when they see how often other teams members are checking in. You can also bring up bug queries to see which bugs got reported / fixed that day (depends which point of the dev cycle you are at) or bring up the build report if you are having trouble with the build breaking too often etc.
Don't have too many check-in policies / rules that have to be obeyed before code get's checked in. You want to enforce that a check-in compiles and doesn't break anything that other people are working on but that is about it. You can enforce that via the CI build.
Hope that makes sense. You could write a plug-in to VS to check in like you suggest, however that will probably mean that your code is in a worse state because check-ins happen when you are not wanting them to happen. Instead you should try to encourage the discipline of frequent check-ins with your team rather than enforce it. Forcing people to do stuff rarely works out well in the end :-)