private void Add_Button_Clicked(object sender, EventArgs e)
        {
            this.Hide();

            Incidents.Add_Incident(_user_id, Description_Textbox.Text);
            // Repopulate the list, so the new description is can be seen
            _incidentsForm.Populate_User_Search_List();
        }