20 lines
417 B
C#
20 lines
417 B
C#
using System;
|
|
using System.Windows.Forms;
|
|
|
|
namespace AIProofread.Controls
|
|
{
|
|
public partial class FormLogin : Form
|
|
{
|
|
public FormLogin()
|
|
{
|
|
InitializeComponent();
|
|
Bridge.InitWebEnvAsync("login", web);
|
|
}
|
|
|
|
private void FormLogin_Load(object sender, EventArgs e)
|
|
{
|
|
this.web.Source = new Uri(Config.WebPath("#login"));
|
|
}
|
|
}
|
|
}
|