30 lines
692 B
C#
30 lines
692 B
C#
|
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 SuperDesign.Controls
|
|||
|
{
|
|||
|
public partial class FrmTitle : Form
|
|||
|
{
|
|||
|
public FrmTitle()
|
|||
|
{
|
|||
|
InitializeComponent();
|
|||
|
}
|
|||
|
|
|||
|
private void BtnOK_Click(object sender, EventArgs e)
|
|||
|
{
|
|||
|
if(TxtTitle.Text.Length<2)
|
|||
|
{
|
|||
|
MessageBox.Show("标题输入太短。", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
|||
|
return;
|
|||
|
}
|
|||
|
DialogResult = DialogResult.OK;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|