CNSA-212-Personal/MDI/frmSummary.cs
2024-02-07 08:42:57 -05:00

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)
{
}
}
}