private void char2BackButton_Click(object sender, EventArgs e)
        {
            Form f = this.FindForm();

            f.Controls.Remove(this);
            charScreen1 cs1 = new charScreen1();

            f.Controls.Add(cs1);
        }
        public Form1()
        {
            InitializeComponent();

            Form f = this.FindForm();

            f.Controls.Remove(this);
            charScreen1 cs1 = new charScreen1();

            f.Controls.Add(cs1);
        }