22 lines
494 B
C#
22 lines
494 B
C#
|
using System;
|
|||
|
using System.Windows.Forms;
|
|||
|
|
|||
|
namespace Chapter6
|
|||
|
{
|
|||
|
public partial class frmSummary : Form
|
|||
|
{
|
|||
|
public frmSummary()
|
|||
|
{
|
|||
|
InitializeComponent();
|
|||
|
// this.FormClosing += new FormClosingEventHandler(FrmSummary_FormClosing);
|
|||
|
this.Activated += new EventHandler(frmSummary_Activated);
|
|||
|
}
|
|||
|
|
|||
|
private void frmSummary_Activated(object sender, EventArgs e)
|
|||
|
{
|
|||
|
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|