CNSA-212-Personal/Chapter6/frmSummary.cs

22 lines
494 B
C#
Raw Permalink Normal View History

2024-02-06 16:44:08 -08:00
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)
{
}
}
}