如何在WPF窗口中显示消息框?下面是我用来显示消息框的代码,但是消息框始终显示在屏幕中央,而不是WPF表单内。 MessageBox是否可能?另一种方法是使用我自己的自定义窗体来显示消息,但如果可能的话,我想使用MessageBox。谢谢!
private void Button1_Click(object sender, RoutedEventArgs e)
{
MessageBox.Show(this,"The record is saved successfully", "Save", MessageBoxButton.OK, MessageBoxImage.Information);
}