在Silverlight中我使用的是配置文件窗口,您还可以选择删除超链接按钮,当前配置文件。 当用户点击超链接按钮,它把他们带到一个新的形式,以确认删除。 虽然删除功能工作(即配置文件已被删除的形式datatbase),我怎么能拿到的第一个窗口,当用户确认关闭?
这就是超链接calls-
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
当我创建它的一个新的实例,我怎么可以参考我使用的是当前的?