Files
squad/legacy/CCNetLogReader/CCNetControls/ManuscriptLogin.cs
2025-07-22 11:34:56 -04:00

21 lines
518 B
C#

using System;
using System.Windows.Forms;
namespace CCNetControls
{
public partial class ManuscriptLogin : Form
{
public ManuscriptLogin()
{
InitializeComponent();
}
public event EventHandler<EventArgs> LoginCompleted;
private void button1_Click(object sender, EventArgs e)
{
LoginCompleted.Invoke(new string[] { txt_UserName.Text, txt_Password.Text }, e);
this.Close();
}
}
}