单项选择题你用VisualStudio.NET开发了一个基于Windows的应用程序,这个应用程序包含一个窗格名叫TestKingInformationForm,这个窗格可以使用户编辑存储在数据库中的信息。所有用户所做的更改一定要存储在数据库中。你要写代码去防止当用户关闭TestKingInformationForm窗体时忘记保存一做更改。你该怎么做?()
A.在TestKingInformationForm窗体中的Closing事件中包含this.Activate。
B.在TestKingInformationForm窗体中的Closed事件中包含this.Activate。
C.在TestKingInformationForm窗体中的Leave事件中包含this.Activate。
D.更改TestKingInformationForm中Closing事件的System.ComponentModel.CancelEventArgs参数的属性。
E.更改TestKingInformationForm中Closed事件的System.EventArgs参数的属性。
F.更改TestKingInformationForm中Leave事件的System.EventArgs参数的属性。