string msg = "saved";
System.Windows.Forms.DialogResult msgResult = MessageBoxDisplay.Show(msg, System.Windows.Forms.MessageBoxButtons.YesNo, System.Windows.Forms.MessageBoxIcon.Information);
if (msgResult == System.Windows.Forms.DialogResult.No)
{
this.Close();
}
现在,我应该在下面的close方法中写些什么。
private void Close()
{
throw new NotImplementedException();
}