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
{
///
///
///
public partial class FrmAuthUser : Form
{
///
///
///
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;
}
}
}