private void button1_Click(object sender, EventArgs e)
{
Application.Current.Shutdown();
}
为什么报这个错
错误 1 “System.Windows.Forms.Application”并不包含“Current”的定义
winform: System.Windows.Forms.Application.Exit();
WPF: System.Windows.Application.Current.Shutdown();
那到底包含不包含?错误提示已经明白的不能再明白了。