RaUI/Source/ryControls/TreeXML/frmAuthUser.cs
2020-11-28 15:03:57 +08:00

35 lines
716 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace ryControls.TreeXML
{
/// <summary>
///
/// </summary>
public partial class FrmAuthUser : Form
{
/// <summary>
///
/// </summary>
public FrmAuthUser()
{
InitializeComponent();
}
private void BtnCancel_Click(object sender, EventArgs e)
{
this.DialogResult = DialogResult.Cancel;
}
private void BtnOK_Click(object sender, EventArgs e)
{
this.DialogResult = DialogResult.OK;
}
}
}