ab56a9bcf7
SVN-Revision: r240
36 lines
902 B
C#
36 lines
902 B
C#
using DevExpress.XtraEditors;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
|
|
namespace Lskj.Main4
|
|
{
|
|
public partial class FrmVerify : XtraForm
|
|
{
|
|
public FrmVerify()
|
|
{
|
|
InitializeComponent();
|
|
this.OkBtn.Click += OkBtn_Click;
|
|
this.CancelBtn.Click += CancelBtn_Click;
|
|
}
|
|
public string messageText
|
|
{
|
|
get { return this.messageBox.Text; }
|
|
set { this.messageBox.Text = value; }
|
|
}
|
|
private void CancelBtn_Click(object sender, EventArgs e)
|
|
{
|
|
this.DialogResult = DialogResult.Cancel;
|
|
}
|
|
private void OkBtn_Click(object sender, EventArgs e)
|
|
{
|
|
this.DialogResult = DialogResult.OK;
|
|
}
|
|
}
|
|
}
|