在 Silverlight 中,我使用的是配置文件窗口,其中包含在超链接按钮中删除当前配置文件的选项。当用户点击超链接按钮时,它会将他们带到一个新表单以确认删除。尽管删除功能已经起作用(即配置文件已从数据库中删除),但如何在用户确认时关闭第一个窗口?
这就是超链接所说的-
private void deleteProfile(object sender, RoutedEventArgs e)
{
deleteProfile dProfile = new deleteProfile();
dProfile.textBlock1.Text = System.Convert.ToString("Delete " + lblMsg.Content);
dProfile.Show();
}
然后从那里dProfile
我想关闭profileForm
当用户单击确定时超链接所在的那个-
private void OKButton_Click(object sender, RoutedEventArgs e)
{
textBlock1.Text = "Profile Deleted.";
profileForm.Close();
Close();
}
但是,该dProfile
表单仅在我创建它的新实例时才识别profileForm
,我如何引用我正在使用的当前实例?