Generally I'd recommend doing this by
customising the engine modes in the solution with criteria that can exclude certain tests by category. You can then categorise the tests using the category attribute applicable to your test framework so that the exclusion criteria picks them up.
Engine modes are stored in the solution configuration file (.ncrunchsolution), which should usually be stored under source control and shared with all team members (see
using NCrunch with source control for recommendations on which files to share with the team).
Of course, ignoring the tests via the Tests Window would also allow them to be shut off for NCrunch (again, this assumes you would share the NCrunch project configuration files using source control, which is highly recommended).
Another option is to use a compile condition so that NCrunch sees an ignore attribute adorning each of these tests when it builds them. For example, if you were using NUnit, the following would disable the test for NCrunch but not other test runners:
#if NCRUNCH
[Ignore]
#endif
[Test]
public void MyTest()
{
.. test code ..
}