I have a form with many tabs.
In order to not having a huge Form1.cs file, I would like to split the methods in several Form1_1.cs, Form1_2.cs etc. file.
I do not find what is the right way to do so. Can I repeat the same namespace and Form in several files? Do I need to repeat all the compliler directives like "using" or only the ones that I will use in that part?
Example:
using System.Data.OleDb;
namespace Mine
{
public partial class Form1 : Form
{
...
Any help or advice will be very welcome.
Thank you in advance. David