基线 SVN r240
SVN-Revision: r240
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user