generated from noisedestroyers/claude
updated db schema def
This commit is contained in:
20
legacy/CCNetLogReader/CCNetControls/ManuscriptLogin.cs
Normal file
20
legacy/CCNetLogReader/CCNetControls/ManuscriptLogin.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user