You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
627 B
C#

2 years ago
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;
}
}
}