CNSA-212-Personal/Chapter6/frmSummary.cs
EggMan20339 37681cbdc7 partial
2024-02-06 19:44:08 -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)
{
}
}
}