using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace Rs.MotionPlat { public partial class UserForm : BaseFormHeader { public UserForm() { InitializeComponent(); } private void btnCancle_Click(object sender, EventArgs e) { this.Close(); } private void UserForm_Load(object sender, EventArgs e) { cboxUsers.SelectedIndex = 0; } } }