25 lines
570 B
C#
25 lines
570 B
C#
namespace YLErp.Forms
|
|
{
|
|
public partial class FormSysLog : Form
|
|
{
|
|
public FormSysLog()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void menuClearLog_Click(object sender, EventArgs e)
|
|
{
|
|
richTextBox1.Clear();
|
|
}
|
|
|
|
private void FormSysLog_FormClosing(object sender, FormClosingEventArgs e)
|
|
{
|
|
if (e.CloseReason == CloseReason.UserClosing)
|
|
{
|
|
e.Cancel = true;
|
|
WindowState = FormWindowState.Minimized;
|
|
}
|
|
}
|
|
}
|
|
}
|