Anything that can be localized should be in a resource file. Even if you are 100% sure you will never need localization having strings in resource file makes that transition easy.
So titles, names, GUI labels, dialog text, error messages, etc all belong in resx. Do it now. If/when your application does need to be localized future developers will thank you.
Now other constants are a little more difficult. I don't think there is a hard & fast rule but generally I try to define "true" constants as a const with as small of a scope as needed. By true constant I mean anything unlikely to ever change over the scope of the application lifetime. I don't like to use resource file for non localized strings as it tends to break encapsulation. For example the require has size for PKDB2 function should be defined locally. Nobody outside the crypto object needs to know what it is.
Things brings up a related topic. Anything which is currently static but is likely to change in the future (even in future versions of application) should be declared readonly instead. These can be loaded from resx, personally I don't. Effectivve C# covers this in item #2.
Also a lot depends on what your company/team requires I have been on teams where nothing was in resource file and also been on teams where everything (even things I felt should be defined locally) were kept in resource file.