35 lines
716 B
C#
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;
|
|
}
|
|
}
|
|
}
|