At the bottom of the screenshot, you might see a "Properties" tab, or you might have a "Properties" window. You can also go to View -> Properties Window, or press F4. Any of those should bring it up. While you have "Helper.cs" selected, the properties should appear in that window - one of which is the Build Action property you mentioned, and you set that to "Compile".
There are several other things you need to do to make your class accessible to your project. You should add a common namespace for all of your code-behind and classes, and then add using MyNamespace;
statements at the top of these classes. You would need to ensure your classes and methods you are calling are public/exposed to the classes doing the calling. There are also issues where the App_Code folder seems to have issues, and just creating a generic folder called "AppCode" (no underscore) and putting the files in that seems to correct the problems (at least, that's how I had to solve some issues).
As for why "Properties" doesn't appear on that menu in your screenshot, you might need to re-install Visual Studio - seems like a bug, to me.