在WPF中,可以使用以下代码关闭当前窗口:
private void CloseButton_Click(object sender, RoutedEventArgs e) { Window.GetWindow(this).Close(); }
在上述代码中,CloseButton_Click是关闭按钮的点击事件处理程序。Window.GetWindow(this)获取当前窗口的实例,并调用Close方法来关闭窗口。
CloseButton_Click
Window.GetWindow(this)
Close